LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Puppy (https://www.linuxquestions.org/questions/puppy-71/)
-   -   Precise Puppy 5.5.92 (5.6beta1) (https://www.linuxquestions.org/questions/puppy-71/precise-puppy-5-5-92-5-6beta1-4175461084/)

BarryK 05-07-2013 07:56 PM

Precise Puppy 5.5.92 (5.6beta1)
 
See my blog post:

http://bkhome.org/blog2/?viewDetailed=00225

Feedback welcome!

pmp_ 05-09-2013 11:58 AM

Abiword-2.9.4 compiling solution
 
Greetings from Germany.
This is my Solution for compiling Abiword:
------------------------------------------------------
- installed frugal ! NEED 768 M private savefile ! -
# Comments are like this #
- ppm install:
langpack de # only for germans, like me #
libboost1.46-dev +dep
libgtk-3-dev_3.4.2 +dep
pkg-config_0.26
-NS, REBOOT-
# in Terminal the following 2 commands #
cd /
ln -s /usr/lib/libcairo-gobject.so.2.11000.2 /usr/lib/i386-linux-gnu/libcairo-gobject.so
Compile1: ./ configure --prefix=/usr --enable-static
Compile2: make
Compile3: new2dir make install

... hope this helps ...
sincerely yours _(pmp)

Karl Godt 05-14-2013 08:05 AM

A small note : due to

cat /proc/cmdline
pmedia=hd psubdir=slacko-5.3

I got me an /etc/rc.d/PUPSTATE file as
Code:

PUPMODE=5
PDEV1=''
DEV1FS=''
PUPSFS='sda1,ext3,/slacko-5.3/puppy_slacko_5.3.sfs'
PUPSAVE=''
PMEDIA='hd'
#ATADRIVES is all internal ide/pata/sata drives, excluding optical, excluding usb...
ATADRIVES='sda '
#ATAOPTICALDRIVES is list of non-usb optical drives...
ATAOPTICALDRIVES=''
#these directories are unionfs/aufs layers in /initrd...
SAVE_LAYER=''
PUP_LAYER='/pup_ro2'
#The partition that has the slackosave file is mounted here...
PUP_HOME=''
#(in /initrd) ...note, /mnt/home is a link to it.
#this file has extra kernel drivers and firmware...
ZDRV=''
#complete set of modules in the initrd (moved to main f.s.)...
ZDRVINIT='no'
#Partition no. override on boot drive to which session is (or will be) saved...
PSAVEMARK=''

This led to some incorrect behavior of
/usr/sbin/shutdownconfig

Have workaround as

Quote:

if [ "$PSAVEMARK" != "" ];then #see /etc/rc.d/PUPSTATE
devnameonly="`echo -n "$PDEV1" | sed -e 's/[0-9]*$//'`"
SAVEPART="${devnameonly}${PSAVEMARK}" #partition that will-have ${DISTRO_FILE_PREFIX}save.
spPATTERN='/dev/'"$SAVEPART"'|'
SAVEFS="`probepart -m | grep "$spPATTERN" | cut -f 2 -d '|'`"
SAVEFILE="$PSUBDIR/${DISTRO_FILE_PREFIX}save.2fs"
PUPSAVE="$SAVEPART,$SAVEFS,$SAVEFILE"
[ "$PDEV1" -a "$devnameonly" -a "$SAVEPART" -a "$SAVEFS" ] && return 0
fi
if [ "$PCHOOSE" != "yes" ];then
SAVEFS="$DEV1FS"
SAVEPART="$PDEV1"
SAVEFILE="$PSUBDIR/${DISTRO_FILE_PREFIX}save.2fs"
PUPSAVE="$PDEV1,$DEV1FS,$SAVEFILE"
echo "SAVEFS=$SAVEFS' SAVEPART=$SAVEPART' SAVEFILE=$SAVEFILE' PUPSAVE=$PUPSAVE'"
[ "$SAVEFS" -a "$SAVEPART" -a "$SAVEFILE" -a "$PUPSAVE" ] && return 0
fi
Am not testing due too little bandwidth, but looking into wary-5.5's shutdownconfig, that part is same .
Best regards.


All times are GMT -5. The time now is 09:07 PM.