Page 6 of 8

Posted: Thu 04 Apr 2013, 05:59
by 01micko
mavrothal, and of course others interested.

Here is my latest (snapshot, still work in progress) adrive script.:

Code: Select all

#!/bin/sh

APP=$0
PROG=${APP##*/}
echo $PROG

[ ! "$1" ] && echo "provide a package name or \"a\" for an Adrive" && exit
[ "$2" = "xz" ] && COMP="-comp xz" || COMP=""
. /etc/DISTRO_SPECS
[ "$1" = "a" ] && DIR=${DISTRO_ADRVSFS%.*} || DIR=$1
[ ! "$DIR" ] && \
echo "maybe this pup can't handle adrive? Provide a package name" && exit
[ -d $DIR ] || mkdir -p ${DIR}/root/.packages
export RDIR=${DIR}/root/.packages
[ `echo $DIR|grep '\-[*]'` ] && DESC=${DIR%%-*}-desc || DESC=${DIR%%_*}-desc
touch ${RDIR}/${DESC}
mkdir -p ${RDIR}/builtin_files
BDIR=${RDIR}/builtin_files
MDIR=${RDIR#*/}
SFS=${DIR}.sfs

manifest_func(){
	PKG=$1
	GENNAME=$2
	[ "$GENNAME" ] || GENNAME=`cat /tmp/genname$$`
	echo -n "$GENNAME "
	case ${PKG##*.} in
	  *gz)O=z ;;
	  txz)O=J ;;
	esac
	tar --list -$O -f $PKG > root/.packages/builtin_files/${GENNAME}
	sed -i -e "s%^\\./${PDIR}%%g" \
	       -e '/^install/d' \
	       -e 's|^\./||' \
	       -e 's|^/||g' \
	       -e '/^pet/d' \
	       -e '/^pinstall/d' \
	       -e '/^puninstall/d' \
	       -e 's|^|/|g' root/.packages/builtin_files/${GENNAME}
	test -f /tmp/genname$$ && rm /tmp/genname$$
}

unpack_func()
{
	echo $1|grep -q 'pet$'
	if [ "$?" = 0 ];then
	  #pet
	  PPKG=$1
	  pet2tgz $PPKG
	  NPPKG=`ls|grep gz$`
	  tar xf $NPPKG 2>/dev/null
	  #[ "$?" = 0 ] || exit $?
	  PDIR=`basename $1 .pet`
	  PDESC=`grep $1 $HOME/.packages/Packages-puppy*|head -1`
	  [ ! "$PDESC" ] && \
	  PDESC=`cat $PDIR/pet.specs`
	  echo ${PDESC##*:} >> ${MDIR}/${DESC}
	  GENNAME=`cat $PDIR/pet.specs|cut -d '|' -f 2`
	  cp -a --remove-destination $PDIR/* .
	  manifest_func $NPPKG $GENNAME
	  rm -r $PDIR
	  rm *.* 2>/dev/null
	  #rm pet.specs
	 else
	  #txz|tgz
	  SPKG=$1
	  PDIR=${SPKG%.*}
	  mkdir $PDIR
	  mv $SPKG $PDIR
	  (cd $PDIR
	  tar xf $SPKG
	  [ "$?" = 0 ] || exit $?
	  [ -f install/doinst.sh ]&& . install/doinst.sh 2>/dev/null
	  GENNAME=`tail -6 install/slack-desc | head -1 |cut -d ':' -f1`
	  [ ! "$GENNAME" ] && GENNAME=${SPKG%%-*} #have a guess
	  echo -n $GENNAME > /tmp/genname$$
	  rm -r install
	  SDESC=`grep $1 $HOME/.packages/Packages-slackware*|head -1`
	  echo ${SDESC##*:} >> ../${MDIR}/${DESC}
	  )
	  cp -a --remove-destination ${PDIR}/* .
	  manifest_func $SPKG
	  rm -rf $PDIR
	fi
}
	


for i in `ls|grep -iE "txz$|tgz$|pet$"|grep -v "$PROG"`; do 
  cp -af $i $DIR
    (cd $DIR
    #echo -n "$i "
    unpack_func $i
    rm $i 2>/dev/null)
  done
 
echo
echo "fixing .desktop entries"
(cd $DIR/usr/share/applications
for x in *
  do sed -i -e 's| %u||g' \
            -e 's| %U||g' $x
  done
MOZ="`ls|grep -iE 'mozilla-firefox|seamonkey'|tr '\n' ' '`"
echo $MOZ
for y in $MOZ
  do
  CATG=`grep '^Categories' $y`
  NEWCAT='Categories=X-Internet-browser;'
  if [ "$CATG" ];then
    sed -i "s|$CATG|$NEWCAT|" $y
  fi
  done
for z in *
  do
  ICON=`grep '^Icon' $z`
  ZICON=`echo "$ICON"|grep -iE 'png$|xpm$|svg$'`
  [ "$ZICON" ] || sed -i "s|$ICON|${ICON}.png|" $z #gross assumption ..png
  done
for w in *
  do
  CATP=`grep 'Categories' $w|grep 'Player'`
  NEWCATP='Categories=Player'
  if [ "$CATP" ];then
    sed -i "s|$CATP|$NEWCATP|" $w
  fi
  done
  # fix sed error if any
  [ -f sed* ] && rm sed*
)
[ -x $DIR/etc/init.d/rc.samba ] && chmod 644 $DIR/etc/init.d/rc.samba
echo "disabling samba on first boot"
echo "now building manifest"
echo "fixing ownership"
chown -R root:root $DIR
echo "mksquashfs $DIR $SFS $COMP"
#exit #test
mksquashfs $DIR $SFS $COMP
[ "$?" = 0 ] && echo "Success!" || echo "FAILED :("
I call it unpack_pkgs2sfs (anyone wanna rename it? :lol: )

Posted: Thu 04 Apr 2013, 07:11
by mavrothal
01micko wrote:mavrothal, and of course others interested.

Here is my latest (snapshot, still work in progress) adrive script.:
Did not test but looks OK.
However if you are to go with adrv, Jemimah's custom builder does everything from splash screen to kernel zdrv. With a bit of fixing/trimming should fly. It will be more handy in THINslacko but PHAT should be OK too.

Posted: Fri 05 Apr 2013, 04:29
by 01micko
mavrothal wrote:
01micko wrote:mavrothal, and of course others interested.

Here is my latest (snapshot, still work in progress) adrive script.:
Did not test but looks OK.
However if you are to go with adrv, Jemimah's custom builder does everything from splash screen to kernel zdrv. With a bit of fixing/trimming should fly. It will be more handy in THINslacko but PHAT should be OK too.
Yeah, maybe one day.. baby steps first.

The idea is to eventually patch sfs_load, bootmanager, petget and whatever else to be sfs aware. That way you don't get stupid dependencies (ala billtoo with guvcview) that are already in the sfs (be it an adrive, zdrive or whatever sfs).

I'm getting close now...

Code: Select all

#!/bin/sh

APP=$0
PROG=${APP##*/}
echo $PROG

[ ! "$1" ] && echo "provide a package name or "a" for an Adrive" && exit
[ "$2" = "xz" ] && COMP="-comp xz" || COMP=""
. /etc/DISTRO_SPECS
[ "$1" = "a" ] && DIR=${DISTRO_ADRVSFS%.*} || DIR=$1
[ ! "$DIR" ] && \
echo "maybe this pup can't handle adrive? Provide a package name" && exit
[ -d $DIR ] || mkdir -p ${DIR}/root/.packages
export RDIR=${DIR}/root/.packages
[ `echo $DIR|grep '\-[*]'` ] && DESC=${DIR%%-*}-desc_sfs || DESC=${DIR%%_*}-desc_sfs
touch ${RDIR}/${DESC}
mkdir -p ${RDIR}/builtin_files
BDIR=${RDIR}/builtin_files
MDIR=${RDIR#*/}
SFS=${DIR}.sfs

manifest_func(){
	PKG=$1
	GENNAME=$2
	[ "$GENNAME" ] || GENNAME=`cat /tmp/genname$$`
	echo -n "$GENNAME "
	case ${PKG##*.} in
	  *gz)O=z ;;
	  txz)O=J ;;
	esac
	tar --list -$O -f $PKG > root/.packages/builtin_files/${GENNAME}
	sed -i -e "s%^\\./${PDIR}%%g" \
		   -e '/^install/d' \
	 	   -e 's|^\./||' \
	 	   -e 's|^/||g' \
	 	   -e 's|^|/|g' root/.packages/builtin_files/${GENNAME} 
	 cat root/.packages/builtin_files/${GENNAME}|\
	 while read ent
	   do 
	     [ "$ent" = "/" ] && continue
	     [ "$ent" = "/pet.specs" ] && continue
	     [ "$ent" = "/puninstall.sh" ] && continue
	     [ "$ent" = "/pinstall.sh" ] && continue
	     ADIR=`echo $ent|grep '/$'`
	     if [ "$ADIR" ];then echo "$ADIR" >> /tmp/${GENNAME}
	       else AFILE=${ent##*/}
	       echo " $AFILE" >> /tmp/${GENNAME}
	     fi
	    done
	   mv -f /tmp/${GENNAME} root/.packages/builtin_files/${GENNAME}
	     
	test -f /tmp/genname$$ && rm /tmp/genname$$
}

unpack_func()
{
	echo $1|grep -q 'pet$'
	if [ "$?" = 0 ];then
	  #pet
	  PPKG=$1
	  pet2tgz $PPKG
	  NPPKG=`ls|grep gz$`
	  tar xf $NPPKG 2>/dev/null
	  #[ "$?" = 0 ] || exit $?
	  PDIR=`basename $1 .pet`
	  PDESC=`grep $1 $HOME/.packages/Packages-puppy*|head -1`
	  [ ! "$PDESC" ] && \
	  PDESC=`cat $PDIR/pet.specs`
	  echo ${PDESC##*:} >> ${MDIR}/${DESC}
	  GENNAME=`cat $PDIR/pet.specs|cut -d '|' -f 2`
	  cp -a --remove-destination $PDIR/* .
	  manifest_func $NPPKG $GENNAME
	  rm -r $PDIR
	  rm *.* 2>/dev/null
	  #rm pet.specs
	 else
	  #txz|tgz
	  SPKG=$1
	  PDIR=${SPKG%.*}
	  mkdir $PDIR
	  mv $SPKG $PDIR
	  (cd $PDIR
	  tar xf $SPKG
	  [ "$?" = 0 ] || exit $?
	  [ -f install/doinst.sh ]&& . install/doinst.sh 2>/dev/null
	  GENNAME=`tail -6 install/slack-desc | head -1 |cut -d ':' -f1`
	  [ ! "$GENNAME" ] && GENNAME=${SPKG%%-*} #have a guess
	  echo -n $GENNAME > /tmp/genname$$
	  rm -r install
	  SDESC=`grep $1 $HOME/.packages/Packages-slackware*|head -1`
	  echo ${SDESC##*:} >> ../${MDIR}/${DESC}
	  )
	  cp -a --remove-destination ${PDIR}/* .
	  manifest_func $SPKG
	  rm -rf $PDIR
	fi
}

#unpack
for i in `ls|grep -iE "txz$|tgz$|pet$"|grep -v "$PROG"`; do 
  cp -af $i $DIR
    (cd $DIR
    #echo -n "$i "
    unpack_func $i
    rm $i 2>/dev/null)
  done
 
echo
echo "fixing .desktop entries"
(cd $DIR/usr/share/applications
#remove %u/%U
for x in *
  do sed -i -e 's| %u||g' \
            -e 's| %U||g' $x
  done
#mozilla
MOZ="`ls|grep -iE 'mozilla-firefox|seamonkey'|tr '\n' ' '`"
echo $MOZ
for y in $MOZ
  do
  cat $y |\
  while read yline
    do 
      CATG=`echo "$yline"|grep '^Categories'`
      if [ "$CATG" ];then NEWCAT='Categories=X-Internet-browser;'
        YLINE="$NEWCAT"
        else YLINE="$yline"
      fi 
      echo "$YLINE" >> /tmp/$y
    done
    cp -f /tmp/${y} $y
    rm /tmp/${y}
  done
#icon and category
for z in *
  do
  cat $z |\
  while read zline
      do 
        case "$zline" in
        Icon=*)echo $zline|egrep -q 'png$|xpm$|svg$'
             [ "$?" = 0 ] && ZLINE="$zline" || ZLINE="${zline}.png" ;; #gross assumption ...png
        Categories=*)echo $zline|egrep -q 'Player'
             [ "$?" = 0 ] && ZLINE="Categories=Player" || ZLINE="$zline" ;;
        *)ZLINE="$zline" ;;
        esac
        echo "$ZLINE" >> /tmp/${z}
      done
      cp -f /tmp/${z} $z
      rm /tmp/${z}
  done
)

[ -x $DIR/etc/init.d/rc.samba ] && chmod 644 $DIR/etc/init.d/rc.samba &&\
echo "disabling samba on first boot"
echo "built manifest"
echo "fixing ownership"
chown -R root:root $DIR
echo "mksquashfs $DIR $SFS $COMP"
#exit #test
mksquashfs $DIR $SFS $COMP
[ "$?" = 0 ] && echo "Success!" || echo "FAILED :("

Posted: Fri 05 Apr 2013, 14:12
by mavrothal
01micko wrote:baby steps first.

The idea is to eventually patch sfs_load, bootmanager, petget and whatever else to be sfs aware. That way you don't get stupid dependencies (ala billtoo with guvcview) that are already in the sfs (be it an adrive, zdrive or whatever sfs).

I'm getting close now...
Works fine.
I guess next will check for missing dependencies and offer to download :wink:

Re: PHATSlacko - March 2013

Posted: Fri 05 Apr 2013, 18:05
by Billtoo
mavrothal wrote:
Billtoo wrote: I just installed the guvcview from ppm, it works fine in pemasu's
raring 3.8.4.1 and 3.8.4.2, and now PHATSlacko.
I've run other pups on this imac in the past and I'm pretty sure
guvcview works fine on those as well.
I guess the 8501 firmware did not make it to the kernel.
My hardware info does not have the iSight in input devices but in USB devices with the notion "Built-in iSight (no firmware loaded)" :(
In raring 3.8.4.2 I plugged my logitech quickcam 500 into a usb port
and then started guvcview, it allows me to choose between the builtin
iSight webcam or the logitech in the device section at the top of the
guvcview configuration screen.
If you have another webcam it may work for you.

Posted: Sat 06 Apr 2013, 19:27
by James C
01micko wrote:
James C wrote:Back in Windows 7 ..... submitted the above post,opened Hardinfo to add more hardware info and had an instant freeze with distorted display and no keyboard input.Hard poweroff.
Might have to await 3.9 James before you can have any fun with f2fs! BTW, I did read about PV's avoidance of 3.8x. What gets me is how the kernel devs get some things so wrong when in previous versions they were stable . :? .
Update from the nVidia Corporation C61 [GeForce 7025 / nForce 630a] box.

Adding nouveau.noaccel=1 to the kernel line solves the freezing problem ... at least on this particular Nvidia chip.

# report-video
VIDEO REPORT: PHATSlacko Puppy, version 5.5.02

Chip description:
VGA compatible controller: nVidia Corporation C61 [GeForce 7025 / nForce 630a] (rev a2)

Requested by /etc/X11/xorg.conf:
Resolution (widthxheight, in pixels): 1024x768x16
Depth (bits, or planes): 24
Modules requested to be loaded: dbe

Probing Xorg startup log file (/var/log/Xorg.0.log):
Driver loaded (and currently in use): nouveau
Loaded modules: dbe dri dri2 exa extmod fb glx kbd mouse record shadowfb

Actual rendering on monitor:
Resolution: 1366x768 pixels (361x203 millimeters)
Depth: 24 planes

...the above also recorded in /tmp/report-video
# glxgears
2423 frames in 5.0 seconds = 484.588 FPS
2443 frames in 5.0 seconds = 488.485 FPS
2710 frames in 5.0 seconds = 541.905 FPS
2722 frames in 5.0 seconds = 544.268 FPS
2709 frames in 5.0 seconds = 541.800 FPS

Also got rid of the error messages when running "glxgears".

-Computer-
Processor : 4x AMD Athlon(tm) II X4 620 Processor
Memory : 3883MB (219MB used)
Machine Type : Physical machine
Operating System : PHATSlacko Puppy - 5.5.02
User Name : root (root)
Date/Time : Sat 06 Apr 2013 02:31:42 PM CDT
-Display-
Resolution : 1366x768 pixels
OpenGL Renderer : Gallium 0.4 on llvmpipe (LLVM 0x300)
X11 Vendor : The X.Org Foundation
-Audio Devices-
Audio Adapter : HDA-Intel - HDA NVidia

Posted: Sat 06 Apr 2013, 20:30
by 01micko
Interesting James, thanks for the info.

I did experiment rolling back to 3.7.10 and 3.6.11 but f2fs was a failure on those. I couldn't see any other advantage of those over 3.4.17 in slacko-5.5 proper.

I'll see if I can compile the latest nvidia proprietary driver so that cards like yours can at least have full acceleration, although I do notice you do seem to get some with those glxgears numbers. Do you happen to have any 3d games to test acceleration under your stated setup?

Posted: Sun 07 Apr 2013, 04:53
by James C
Further testing with the troublesome Nvidia chips.

Tested several of Pemasu's earlier releases with k-3.7.x or k-3.8.x kernels that also froze up and by adding "nouveau.noaccel=1" to the kernel line all freezing has stopped.

Don't recall exactly when the problem started but it seems like it was about the area of k-3.5.x or k-3.6.x......... never noticed a problem with Slacko until PHATSlacko though.

Posted: Sun 07 Apr 2013, 05:19
by 01micko
Ok, I might add "nouveau.noaccel=1" to the iso, I'll just test it works ok on my nvidia which works fine (pfix=ram)..

Just for reference, here's my glxgears numbers with the default as it stands now:

# glxgears
Running synchronized to the vertical refresh. The framerate should be
approximately the same as the monitor refresh rate.
3941 frames in 5.0 seconds = 788.146 FPS
4117 frames in 5.0 seconds = 823.320 FPS
4147 frames in 5.0 seconds = 829.196 FPS
# export vblank_mode=0
# glxgears
ATTENTION: default value of option vblank_mode overridden by environment.
ATTENTION: default value of option vblank_mode overridden by environment.
4974 frames in 5.0 seconds = 992.166 FPS
5085 frames in 5.0 seconds = 1016.974 FPS
5031 frames in 5.0 seconds = 1004.453 FPS
5098 frames in 5.0 seconds = 1019.527 FPS

GS8400 nvidia

-------------------------------------------------------

More here in a moment...

..back already

Seems perfectly acceptable :)

# report-video
VIDEO REPORT: PHATSlacko Puppy, version 5.5.02

Chip description:
VGA compatible controller: nVidia Corporation G98 [GeForce 8400 GS] (rev a1)

Requested by /etc/X11/xorg.conf:
Resolution (widthxheight, in pixels): 1024x768x16
Depth (bits, or planes): 24
Modules requested to be loaded: dbe

Probing Xorg startup log file (/var/log/Xorg.0.log):
Driver loaded (and currently in use): nouveau
Loaded modules: dbe dri dri2 exa extmod fb glx kbd mouse record shadowfb

Actual rendering on monitor:
Resolution: 1366x768 pixels (361x203 millimeters)
Depth: 24 planes

...the above also recorded in /tmp/report-video
# glxgears
1982 frames in 5.0 seconds = 396.294 FPS
2055 frames in 5.0 seconds = 410.982 FPS
2155 frames in 5.0 seconds = 430.972 FPS
# export vblank_mode=0
# glxgears
ATTENTION: default value of option vblank_mode overridden by environment.
1762 frames in 5.0 seconds = 352.383 FPS
1717 frames in 5.0 seconds = 343.355 FPS
1736 frames in 5.0 seconds = 347.096 FPS


Thanks for that James

Posted: Mon 08 Apr 2013, 05:11
by James C
Went ahead and did a frugal install of PHATSlacko on the dual-core with the troublesome Nvidia chip.No problems after adding nouveau.noaccel=1.

# report-video
VIDEO REPORT: PHATSlacko Puppy, version 5.5.02

Chip description:
VGA compatible controller: nVidia Corporation C61 [GeForce 7025 / nForce 630a] (rev a2)

Requested by /etc/X11/xorg.conf:
Resolution (widthxheight, in pixels): 1024x768x16
Depth (bits, or planes): 24
Modules requested to be loaded: dbe

Probing Xorg startup log file (/var/log/Xorg.0.log):
Driver loaded (and currently in use): nouveau
Loaded modules: dbe dri dri2 exa extmod fb glx kbd mouse record shadowfb

Actual rendering on monitor:
Resolution: 1440x900 pixels (380x238 millimeters)
Depth: 24 planes

...the above also recorded in /tmp/report-video
# glxgears
1376 frames in 5.0 seconds = 275.070 FPS
1510 frames in 5.0 seconds = 301.832 FPS
1535 frames in 5.0 seconds = 306.827 FPS
1508 frames in 5.0 seconds = 301.493 FPS
1495 frames in 5.0 seconds = 298.953 FPS

-Computer-
Processor : 2x AMD Athlon(tm) 64 X2 Dual Core Processor 5200+
Memory : 3888MB (230MB used)
Machine Type : Physical machine
Operating System : PHATSlacko Puppy - 5.5.02
User Name : root (root)
Date/Time : Mon 08 Apr 2013 12:13:00 AM CDT
-Display-
Resolution : 1440x900 pixels
OpenGL Renderer : Gallium 0.4 on llvmpipe (LLVM 0x300)
X11 Vendor : The X.Org Foundation
-Audio Devices-
Audio Adapter : HDA-Intel - HDA NVidia

Code: Select all

# free
             total         used         free       shared      buffers
Mem:       3888008       915720      2972288            0        66776
-/+ buffers:             848944      3039064
Swap:      6211580            0      6211580
#

PHATSlacko - March 2013

Posted: Wed 10 Apr 2013, 00:58
by Billtoo
I have a computer with intel 4000 graphics, it's working well in
PHATSlacko.
video-info-glx 1.5.3 Tue9Apr 2013onPHATSlacko Puppy 5.5.02 Linux 3.8.5.1 i686
2.0 VGA compatible controller: Intel Corporation Device 0166 (rev 09)
oem: Intel(R) Sandybridge/Ivybridge Graphics Chipset Accelerated VGA BIOS
product: Intel(R) Sandybridge/Ivybridge Graphics Controller Hardware
Version 0.0
X Server: Xorg Driver: intel
X.Org version: 1.12.3
dimensions: 1920x1080 pixels (507x285 millimeters)
depth of root window: 24 planes
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
OpenGL vendor string: Tungsten Graphics, Inc
OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2
OpenGL version string: 2.1 Mesa 8.0.4
# glxgears
Running synchronized to the vertical refresh. The framerate should be
approximately the same as the monitor refresh rate.
303 frames in 5.0 seconds = 60.441 FPS
301 frames in 5.0 seconds = 60.001 FPS
301 frames in 5.0 seconds = 60.000 FPS
#
Nexuiz works great :)

EDIT: after using this for a few hours it's working great, thanks.

Skype 4.0 in Phat is 423 MB download ?

Posted: Wed 05 Jun 2013, 01:14
by jenom
Downloaded and installed Phat on a Lenovo T61.....works very well
However, when I tried to install SKYPE 4.0 with pkg manager from slackware repositories......checked fro dependencies.....it will be a huge 423 MB download !!!
Anybody can verify this ?
Thanks!

Re: Skype 4.0 in Phat is 423 MB download ?

Posted: Wed 05 Jun 2013, 06:06
by peebee
jenom wrote:Downloaded and installed Phat on a Lenovo T61.....works very well
However, when I tried to install SKYPE 4.0 with pkg manager from slackware repositories......checked fro dependencies.....it will be a huge 423 MB download !!!
Anybody can verify this ?
Thanks!
Try Skype 4.2 - about 50MB for the 2 sfs's - should work fine on PhatSlacko

Re: Skype 4.0 in Phat is 423 MB download ?

Posted: Wed 05 Jun 2013, 12:27
by 01micko
peebee wrote:Try Skype 4.2 - about 50MB for the 2 sfs's - should work fine on PhatSlacko
Well and good to try skype-4.2 but there is skype-4.1 in the Sfs Manager from the Setup menu.

Be aware too that Qt (the other sfs peebee mentions in the post linked) is already on the PHATSlacko Adrive (ie: is part of the system). Only the skype sfs is needed. Getting the other Qt sfs linked won't do any harm but will waste valuable resources on your system.

Re: Skype 4.0 in Phat is 423 MB download ?

Posted: Wed 05 Jun 2013, 14:03
by peebee
01micko wrote:Be aware too that Qt (the other sfs peebee mentions in the post linked) is already on the PHATSlacko Adrive (ie: is part of the system). Only the skype sfs is needed.
I've edited my Skype thread to make this clear (I hope).

P.

Posted: Wed 05 Jun 2013, 21:26
by jenom
thanks for the info
I am going to try first 4.0 without qt....to see what happens
I am not familiar (yet), what to do with sfs files

Posted: Thu 20 Jun 2013, 21:17
by Jim1911
Hi mick,

My health has kept me from my computer, however, I finally got around to checking out your PHATSlacko. It's a super distribution with everything checked working great :D on my hardware except for the nvidia driver.

PPM NVIDIA driver installation did not work so I had to revert back to nv. When trying to compile the latest driver '319.23', I get an error: "Unable to find the system utility 'ldconfig'; make sure you have the package 'glibc' installed." This usually indicates that the devx or kernel source is not loaded. I was under the impression that they are contained in the adrive. Also, I haven't found the scripts used to edit the adrive. Is there a pet utility available for edit of the adrive?

Thanks for continuing to support Bibletime which installed fine using the PPM. :D

Thanks again, :D
Jim

Equipment: BFG NVIDIA Geforce 8400 GS 512MB, Asus P6T Motherboard, Intel core i7-920 (8MB Cache, 2.66 GHz), DDR3 3GB 1333MHz ram, Pioneer DVR-2910 DVD+-RW Dual Layer Burner, Realtek ALC1200 Audio, HP Photosmart C5280 All-in-One Printer

Posted: Sat 28 Sep 2013, 16:30
by Colonel Panic
I've not long ago downloaded 5.5.02 and am happy to say that it's working well. I also like the fact that it can install programs with .deb and .rpm extensions.

Posted: Sat 12 Oct 2013, 18:01
by umair
Refer to my post regarding Jitsi (VOIP Protocol)
http://murga-linux.com/puppy/viewtopic. ... 37&t=82679
Jitsi working Nicely without any issue in PHAT Slakco :).
UMAIR

installing PHATSlacko

Posted: Tue 05 Nov 2013, 06:28
by toronado
So after using the universal installer to frugal install and finding that there was no Menu>Network>Samba Simple Management, and that several of the desktop icons do nothing when you click them, I found this thread and manually copied the adrv_slacko_5.5.02.sfs to the install directory. This gave me the Menu>Network>Samba Simple Management but the "write" and "calc" desktop icons still do nothing.

What is the correct method to install this? Boot from the CD and use the Universal Installer and then manually copy the adrv_slacko_5.5.02.sfs from the CD, or do not run the universal installer at all and instead just manually copy each of these files from the CD to the install directory:
vmlinuz
initrd.gz
puppy_slacko_5.5.05.sfs
adrv_slacko_5.5.02.sfs

???