Page 13 of 20

Posted: Tue 16 Jan 2018, 11:28
by smokey01
smokey01 wrote:
jake29 wrote:@smokey01 - Sorry for the delay - HDD failure on my desktop. Hardware ID of the printer is probably essential to allowing CUPS to find the driver. Are you able to get this ID? example: 0x0282,13,1,"MFC-J625DW"

Here is a corrected version of the file previously uploaded: brother-print-scan-modified_fixed.tar.xz
Thanks jake I will check it out. I now have my hands on the printer so I should be able to get the printer ID. Will advise.
jake29, tried your new package and it didn't work either.

Device ID appears to be 025c.
lsusb reports: Bus 007 Device 002: ID 04f9:025c Brother Industries, Ltd

I hope that helps.

I also run this machine as root, not spot. Too many restrictions using spot.

When it didn't work using your package, well I turned it into a package then installed it, I tried using just the ppd file and that didn't work either.

I was expecting to see the driver (mfc-j415w) show up in cups for selection. It didn't. Just two entries of BrGenML1 for CUPS (en).

See attached:

Posted: Wed 17 Jan 2018, 20:46
by smokey01
I've solved the Brother MFC-J415W printer problem with a little help from CatDude.
There is a script that will download and install the appropriate drivers for your brother printer and scanner. Unfortunately the script did not work properly in Fatdog64-720 as it requires dpkg, a debian package installer. The dpkg in Fatdog is a cut down version in busybox. The good news a full version is available in the package manager so I installed that.

Download a copy of the Download Install Tool here:
http://support.brother.com/g/b/download ... &type3=625

Directions on running the script will be displayed after agreeing to the EULA.

Before running the script you need to load the 32bit library SFS then Install perl and ghostscript from the package manager.

Thanks to all who offered help.

Posted: Fri 19 Jan 2018, 01:56
by jake29
@smokey01 - Glad to hear you got the issue resolved.

resetmsmice

Posted: Wed 31 Jan 2018, 09:52
by jake29
resetmsmice_fixed.sfs - This utility, resetmsmice, fixes scroll wheel issues with certain Wireless Microsoft mice in X.org, where the vertical wheel scrolls abnormally fast. Usage: 'Reset Now' and close.

SFS includes startup script.

Only required once per session. Without this utility, mouse usb transmitter needs to be unplugged and reconnected to resolve issue.

EDIT: Re-uploaded sfs due to missing files.

Posted: Wed 21 Feb 2018, 21:09
by step
Recently uploaded packages and SFS files:
  • rxvt unicode SFS (perl) 9.22 git 2018.01.29_0767fe7. This is a bleeding edge build of urxvt terminal with support for **TRUE COLOR**, named tabs, clickable URLs, on-the-fly font resizing, scroll buffer text search, and more. Load from SFS manager. The binaries are located in /usr/local/bin and coexist with the standard urxvt package. Perl 5.20.00 (devx) is required for use. >>More info. See also background information about "Perl Versions" further down.
  • vimpager 2.06_351_gfdc74aa git - view text files with syntax highlighting (for vim users). Install from package manager.
  • rxvt unicode (perl) 9.22 build 3. This is a rebuild of urxvt terminal with support for 256 colors, named tabs, clickable URLs, on-the-fly font resizing, scroll buffer text search, and more. Install from package manager. Perl 5.20.00 is required for installation and use. >>More info. See also background information about "Perl Versions" further down.
  • rstudio 1.1.419, R IDE. Install from package manager or load the corresponding SFS file from SFS manager. Release >>info and support.
  • progress 2017.11.06 git - Tiny command-line progress monitor for cp/mv/etc. Install from package manager.
  • wine 3.0 SFS - Windows emulator. Load from SFS manager.
  • ninja 2018.01.25 git - Small and fast build system. Required to build package neovim. Install from package manager.
  • re2c 1.0.3 - Generator of fast lexers. Required to build package ninja. Install from package manager.
  • calibre 3.15.0 SFS - E-book manager. Load from SFS manager.
  • aria2 1.33.1 - Lightweight multi-protocol & multi-source command-line download utility. Install from package manager.
  • wimlib 1.12.0 - File archiving of Windows Imaging (WIM) files. Wimlib also includes (de)compressors for several Microsoft compression formats (not just WIM). Install from package manager.

Posted: Sat 24 Feb 2018, 19:33
by don570
A GUI for mpscan - to obtain live addresses on a network

MPscan-GUI-1.0.txz
see below

Posted: Tue 27 Feb 2018, 01:01
by don570
The latest pmirror -- 6.2
I put mirdir inside package to be sure it's there.

Size 13k
pmirror-0.6.2-x86_64.txz
https://drive.google.com/open?id=1WJHJE ... b2qafpDbqq
__________________________________________

Posted: Wed 28 Feb 2018, 00:01
by don570
mpscangui - find network addresses with mpscan

I included 'getlocalip' which is a quick way to get local eth0 and wireless address


mpscangui-1.1-x86_64.txz
Size: 8k
https://drive.google.com/open?id=16uAUy ... XxAMHx37DE
___________________________________________

Posted: Thu 01 Mar 2018, 10:06
by step
Maybe it's already been mentioned in this thread, so anyway
here CatDude explains how to make the Fatdog64-710 Skype 4.3 SFS work in spite of current Skype updates. I tested CatDude's method on Fatdog64-721 and it worked for me. I was able to see my Skype contacts and make calls. Other testers report that the method works for them too, but they have to re-enter their skype contacts. I suspect that their skype profile was created with skype 8, so skype 4.3 can't decode some of it. YMMV

How I have got working my Brother Hl2130 printer

Posted: Thu 01 Mar 2018, 10:58
by watchdog
Load 32 bit sfs and install ghostscript. In /root/Startup put a script with execute permissions:

Code: Select all

#!/bin/sh
/etc/init.d/70-cups stop
start32 /etc/init.d/70-cups start
Copy in in /usr/bin "debbi" script from a rcrsn51's package (thanks!) with execute permissions:

Code: Select all

#!/bin/sh
#the Debian-Brother Installer
#rcrsn51 2009-06-15
#installs a Debian printer package and executes the post-install script
#usage: debbi filename.deb 

if [ $# = 0 ]; then
  exit
fi

if [ ! -e $1 ]; then
  echo "File not found!"
  exit
fi

EXT=${1##*.}
if [ "$EXT" != "deb" ]; then
  echo "Not a .deb file!"
  exit
fi

mkdir -p /var/spool/lpd

dpkg-deb -x $1 /
dpkg-deb -e $1
if [ -e DEBIAN/postinst ]; then
  sh DEBIAN/postinst
  echo "Post-install script completed!"
fi
rm -rf DEBIAN
echo "Done!"
Install lpr and cupswrapper drivers of the brother printer with debbi:

Code: Select all

debbi /path-to/hl2130lpr-2.1.0-1.i386.deb
debbi /path-to/cupswrapperHL2130-2.0.4-2.i386.deb
There was an error installing the drivers but my printer works after a reboot.

arpscan 1.9.5

Posted: Thu 01 Mar 2018, 15:53
by don570
arpscan 1.9.5 64 bit
source --->https://github.com/royhills/arp-scan

Download:
arpscangui-1.9.5-x86_64.txz
Size: 28k
https://drive.google.com/open?id=14UVWG ... itSqeZjq1m
I prefer arpscan over mpscan. It is larger in size but the features are worth it.

As well mpscan I have found that mpscan doesn't work with a crossover
ethernet cable that I have constructed. :cry:

Instructions for use:
http://www.nta-monitor.com/wiki/index.p ... User_Guide

Posted: Mon 12 Mar 2018, 17:06
by don570
Here is right click utility to quickly open a HTML file with right click.
Geany will open a temporary copy.
Note that package requires python package to installed.
You can download it from ibiblio reporsitory.
http://distro.ibiblio.org/fatdog/packag ... 6_64-1.txz


html2txt-x86_64.txz

Size: 17k

Download:
https://drive.google.com/open?id=1Hb1mE ... CZBexS7kHy

_____________________________________________________


Tip:

When using my version of mypaint 1.3 , make sure you also place
mimeinfo.cache inside the folder /usr/share/applications/


This allows gimp to be used as external program.

________________________________________

Posted: Sun 18 Mar 2018, 10:13
by step
Recently uploaded packages and SFS files: Info and download instructions: >main post.

Posted: Sun 25 Mar 2018, 19:05
by don570
Here is the latest GIMP 2.9.9 portable app

It worked in fatdog64 710 (except for bump mapping and displacement)

https://www.gimp-forum.net/Thread-Porta ... -for-linux

____________________________________________________

Posted: Sun 06 May 2018, 20:34
by don570
GIMP 2.10 appimage found here...
https://github.com/aferrero2707/gimp-appimage/releases

I have solution for gmic plugins if you have trouble with these.

Install libxkbcommon

http://distro.ibiblio.org/fatdog/packag ... 6_64-1.txz
____________________________________________________

Posted: Wed 09 May 2018, 18:43
by don570
I wrote a timer/alarm clock for fatdog64
Allows multiple alarms to be set easily.
mp3 file can be played to wake you up in morning.


Explained here....
http://murga-linux.com/puppy/viewtopic.php?t=112410

EDIT:
Available:
ptmtimer-2.3-x86_64.txz
https://drive.google.com/open?id=1PJwrt ... gTETcsiArq

Posted: Wed 23 May 2018, 00:10
by don570
I wanted to do morphing of image so
I made a lazpaint package for fatdog64 710
by converting a deb package.

Available:

lazpaint-6.2-x86_64.txz
Size 2mb
https://drive.google.com/open?id=1jf-KT ... gmsc-AAb-E

________________________________________________________

Posted: Wed 18 Jul 2018, 00:06
by don570
Note :

After installing audacity ---> to find dependencies that need to
be installed type ...

Code: Select all

ldd /usr/bin/audacity
________________________________________

Posted: Sat 28 Jul 2018, 16:59
by don570
An alternative to turbo VNC is available...

https://aur.archlinux.org/packages/realvnc-vnc-viewer/
Instructions : Type the address and window number i.e.

Code: Select all

192.168.1.103:0
__________________________________________________________

Posted: Wed 08 Aug 2018, 12:40
by smokey01
Wifi driver for Realtek rtl8812au chip set. Compiled for k4.14.12.
http://smokey01.com/fd720/packages/rtl8 ... 6_64-1.txz