Page 7 of 9

pupsaveconfig-2.2.1

Posted: Mon 23 Apr 2012, 04:22
by shinobar
Released pupsaveconfig-2.2.1.pet http://shino.pos.to/linux/puppy/
# v2.2.1 23apr12: fix was failed partition number >= 10, dialog shows all options, no choice under MINIMB

For pupplet developers:
If you want to, edit /usr/bin/pupsaveconfig for some ajustables at line 51- :

Code: Select all

# adjustables
EXT4SUPPORT="yes"   # EXT4SUPPORT="" to disable ext4 support ("yes" to support if available)
HIDEADVANCED=""   # 'yes' to hide advanced file options, ''(null) to show all options
WAIT1=120 # in second, time limit before shutdown
MINMB=64      # smallest savefile size in MB, to show smaller than 64
STDMB=512   # standard savefile size
MAXMB=2048   # largest savefile size in choice, to show larger than 2048

pupsaveconfig-2.2.2

Posted: Mon 30 Apr 2012, 08:16
by shinobar
Updated: pupsaveconfig-2.2.2.pet (2012-04-30)
Download from http://shino.pos.to/linux/puppy/.
# v2.2.2 29apr12: deeper layer subdirectory (zekebaby), remove legacy, rc.shutdown: avoid re-login VERBOSE message, wmpoweroff and wmreboot: startxface4 (Saluki compatible)

Posted: Mon 30 Apr 2012, 08:30
by chrome307
Thanks for this :)

killfuse

Posted: Mon 30 Apr 2012, 08:40
by shinobar
For whom interested in the code on the shutdown issue:
The point is not to kill myself nor my parents. This is mortal sin against moral common. :wink:
http://www.murga-linux.com/puppy/viewto ... 766#623766
I suspected the '.fuser -k', and made a function 'killfuser', which checks out the PID. I guess the killzombies has no problem.
/etc/rc.d/rc.shutdown wrote:#29apr12: do not kill myself to avoid re-login
MYPID=$$
PARENT=$PPID
killfuser() {
[ "$1" ] || return
BADPIDS="`fuser -m $1 2>/dev/null`"
[ "$BADPIDS" ] || return
[ "$VERBOSE" = 'debug' ] && echo "MYPID=$MYPID, PARENT=$PARENT"
for ONEBAD in $BADPIDS
do
[ "$ONEBAD" = "$MYPID" ] && continue
[ "$ONEBAD" = "$PARENT" ] && continue
if [ "$VERBOSE" ]; then
echo -n "Killing process $ONEBAD..."
if [ "$VERBOSE" = 'debug' ]; then
echo -n ", or skip(S)? " ; read R
R=$(echo $R | tr 's' 'S' | cut -b1)
[ "$R" = 'S' ] && continue
else
echo > /dev/console
fi
fi
kill $ONEBAD
sleep 1
kill -9 $ONEBAD 2>/dev/null
sync
done
}

Post subject: pupsaveconfig-2.2.2

Posted: Fri 04 May 2012, 16:06
by ETP
Thanks for this essential utility. Currently using it in Slacko 5.3.2.9.

pupsaveConfig-2.2.5

Posted: Thu 10 May 2012, 02:51
by shinobar
EDIT: there was a bug in v2.2.4, fixed at v2.2.5. See another post bellow.

pupsaveconfig-2.2.4

Posted: Fri 11 May 2012, 22:53
by shinobar
UPDATED: pupsaveconfig-2.2.4
#7may12 - v2.2.3 shinobar: rc.shutdown: refined avoiding re-login (killfuser avoid killing my grand parents)
#20may12 - v2.2.4 shinobar: rc.shutdown: fix was failed to mount cd beacause of the probepart bug (tnx to phil66)

Posted: Sun 17 Jun 2012, 09:04
by Karl Godt
Just short, shinobar : Now i have encountered this problem of re-login also .

Full installation to "Normal HDD Setup" with 2 Win ntfs partitions
and the OEM recovery fat partition - resized -
and made a fourth extended partition with two swaps - one for swap and one for suspend to disk -
and a 6-7 GB ext4 partition with racy-5.3 on it PUPMODE=2 plus Saluki-19 frugal PUPMODE=12 .

I was running the full install several times and it powered off or rebooted ok, and all of a sudden today it started to kill a process that seems to do a re-login, since i have taken out several rm -rf from rc.shutdown and put the rm -rf /tmp into rc.sysinit (together with a mkdir -p /tmp;chmod 1777 /tmp) - so bootcnt.txouch is still there, so no automatic xwin for me .

I first replaced fuser with busybox fuser since busybox seems to honour PID 1 - init automatically . Tjhat worked ok, but i am unsure if that is the right way . Besides PID1 i started to filter `pidof reboot`, `pidof poweroff` and "$$" which seems to work for me .

Besides that, the fuser command leaves a bunch of several dozen <defuncts> @me for some [milli]seconds . I have put a sleep 2 at first line of killzombies function.

Am reading your code now ! Thanks !

Posted: Tue 11 Sep 2012, 22:16
by Ghost Dog
Hey,

I'm using this on Slacko 3.3, running from a usb stick, and while it saves on my hard drive fine, Puppy doesn't detect it at boot.

Any ideas?

doesn't detect pupsave on the hard drive

Posted: Wed 12 Sep 2012, 07:02
by shinobar
Ghost Dog wrote:I'm using this on Slacko 3.3, running from a usb stick, and while it saves on my hard drive fine, Puppy doesn't detect it at boot.
If you have 'pmedia=usbflash' boot option, remove this pmedia option.
The boot option is on a file named menu.lst, syslinux.cfg, or extlinux.conf.

Posted: Fri 14 Sep 2012, 12:25
by Ghost Dog
Thanks Shino, that did it. :D

this tool should be by default on any distro

Posted: Mon 24 Sep 2012, 04:24
by Pelo
Merci de l'avoir fait.
No bug from my side. Very usefull tool !

Posted: Wed 10 Oct 2012, 19:31
by vicmz
I haven't seen any NLS files, so I made a translation to Spanish for version 2.2.4 which I currently use. Note: there are a few lines with provisional translations, I'll post the file with those lines revised later. Also, the AR is just the country chosen for the system, the translation is in standard Spanish and shall work whatever Hispanic country is chosen.

pupsaveConfig-2.2.5

Posted: Tue 30 Oct 2012, 04:22
by shinobar
There was a bug in v2.2.4, fixed at v2.2.5.
http://shino.pos.to/linux/puppy/
/etc/rc.d/rc.shutdown-v2.2.5 wrote:#29apr12: do not kill myself to avoid re-login
#7may12 - v2.2.3: avoid killing my grand parents, more verbose under debug mode
#v2.2.4: fix typo
#v2.2.5: fix again killing my grand parents
MYPID=$$
PARENT=$PPID

killfuser() {
[ "$1" ] || return
BADPIDS="`fuser -m $1 2>/dev/null`"
[ "$BADPIDS" ] || return
PSRESULT=$(ps -al)
PSRESULT=$(echo "$PSRESULT"| tr -s ' ' | cut -f4,5,14 -d' ')

[ "$VERBOSE" = 'debug' ] && echo "MYPID=$MYPID, PARENT=$PARENT"
for ONEBAD in $BADPIDS
do
[ "$ONEBAD" = "$MYPID" ] && continue
[ "$ONEBAD" = "$PARENT" ] && continue

echo "$PSRESULT" | grep -w "$ONEBAD" | grep -qw -E "$PARENT|poweroff|reboot" && continue
if [ "$VERBOSE" ]; then
[ "$VERBOSE" = 'debug' ] && echo "$PSRESULT" | grep -w $ONEBAD
echo -n "Killing process $ONEBAD..."
if [ "$VERBOSE" = 'debug' ]; then
echo -n ", or skip(S)? " ; read R
R=$(echo $R | tr 's' 'S' | cut -b1)
[ "$R" = 'S' ] && continue
else
echo > /dev/console
fi
fi
kill $ONEBAD
sleep 1
kill -9 $ONEBAD 2>/dev/null
sync
done
}
Note that pupsaveconfig-2.2.5.pet does not have NLS. pupsaveconfig_NLS is coming soon.

Posted: Sat 03 Nov 2012, 03:09
by vicmz
Please see my post here
This doesn't happen to me in latest Precise, Slacko or Wary, even with PupShutdown installed.

Posted: Sat 23 Mar 2013, 02:17
by memomelaque
Thank you Shin, it is a great little program, works exactly like it is described and it is what I was looking for. I am using 5.3.1.

Again, thanks

Posted: Mon 25 Mar 2013, 04:01
by mhanifpriatama
I installed to slacko5.5, Likely worked, I change to -0 (do not save). But,when I install apps (in another day), why it save at pupsave file without run savepupsave ?
Sorry for my English.

installed apps saved at pupsave

Posted: Mon 25 Mar 2013, 07:28
by shinobar
mhanifpriatama wrote:I installed to slacko5.5, Likely worked, I change to -0 (do not save). But,when I install apps (in another day), why it save at pupsave file without run savepupsave ?
Sorry for my English.
It is the fault of the petget (Puppy Package Manager).
One of the solution is to use the petget-20120418.
http://www.murga-linux.com/puppy/viewtopic.php?t=64708

Posted: Sun 19 May 2013, 10:31
by ASRI éducation
Hello shinobar,

I'm ok to translate pupsaveconfig into French.

Question: Can I use the file http://shino.pos.to/linux/puppy/pupsaveconfig.pot, it is updated for version 2.2.5?

Sincerely,

pupsaveconfig.pot

Posted: Sun 19 May 2013, 11:20
by shinobar
ASRI éducation wrote:Can I use the file http://shino.pos.to/linux/puppy/pupsaveconfig.pot, it is updated for version 2.2.5?
No problem, but i have made it updated.