justlighthouse64 and Fatdog64 hybrid

For talk and support relating specifically to Puppy derivatives
Message
Author
User avatar
eztuxer
Posts: 494
Joined: Thu 06 Nov 2008, 11:19
Location: Hungary
Contact:

#46 Post by eztuxer »

Hi stemsee.
Great work, looks good, and I can't wait for the next release.
Could you upload your latest 2 GB remaster in the mean time, please ?
I don't mind the big size as long as it handles save file in an easy to use manner.
I also love all the media soft you described.
Keep on keepin' on man !
Don't poop it down... Pup it Up !

stemsee

#47 Post by stemsee »

For anyone who wants to try and who doesn't baulk at the size of this re-mastered Media monster, here it is @ 2.2 GB (non-maximal xz compression) FatHouse64-710M.iso (Media edition)

Ardour-5.4
Audacity
Hydrogen
Jack
Jack-rack
jamin
Zynaddsubfx
Jack
qjackctl
diaporama

libreoffice 5.3.2 ES GB CN PT
mm_view
wex
scrot
Wifi-Scanner-2 (multi_interface-wifi)
WPS office
lxterminal
fatdog savefile creator working with hack.

Most fatdog apps, and updates.

quick-locale-switcher saves puppy_pin per locale for 4 locales en,pt,cn,es now.

It would be nice if someone volunteered to whittle this down a bit!

https://drive.google.com/file/d/0B8-coZ ... ktHOXk0ekk

User avatar
ally
Posts: 1957
Joined: Sat 19 May 2012, 19:29
Location: lincoln, uk
Contact:

#48 Post by ally »

mirrored

:)

User avatar
eztuxer
Posts: 494
Joined: Thu 06 Nov 2008, 11:19
Location: Hungary
Contact:

#49 Post by eztuxer »

Thank you, DWNLD now...
Will post feedback ASAP Just in time for my 65 th B'day April 12 :-)
Don't poop it down... Pup it Up !

User avatar
eztuxer
Posts: 494
Joined: Thu 06 Nov 2008, 11:19
Location: Hungary
Contact:

#50 Post by eztuxer »

Downloaded twice showing same : 2,3 GB (2.278.594.560 bytes)

Copied twice on 2 different USB sticks but not booting.

SHA 256 check = 3db9628b9212c06eb1eecd8333e6fde048c4f5daee0d6ce56b7551980f51ab63

I used Linux Mint USB image writer, will try with unet bootin (windblow$ 10) to see...
Don't poop it down... Pup it Up !

User avatar
eztuxer
Posts: 494
Joined: Thu 06 Nov 2008, 11:19
Location: Hungary
Contact:

#51 Post by eztuxer »

Still not booting.
Will try with a 8 GB stick instead of 16 GB.
Or even with CD or DVD later.
Using f 12 and legacy chosing the USB stick : it displays the first line "anvin, etc..." but nothing more.
The EFI menu can be accessed but no boot either.
Happy Easter holydays.
Don't poop it down... Pup it Up !

stemsee

#52 Post by stemsee »

Just finished remastering with a few bugs squashed, and some creases ironed out!

Wifi-Connect now shows encrypted key 'on', and mac/ssid and BSSID.
Wifi-Scanner-2 scales to 8 wifi interfaces.
savefile.sh and rc.shutdown scripts now working as I hoped.
sfs-unattended-remaster working as hoped
locale switcher is improved for 4 locales GB, US, BR, CN
Updated libroffice, and wps office
chrome has more plugins
chromecasting to my tv works great!
slocategui works great
refdnd now plays media images (cover images) as wallpapers
masterpdf 4 updaed
Menu>Network section tidied up, by removing duplicate .desktop entries

New kernel with built-in initrd and kernel-modules.sfs @ 56mb - 4.10.13-x86_64
yes, this iso has no separate initrd.gz and no boot menu entry.

uploading.

s243a
Posts: 2580
Joined: Tue 02 Sep 2014, 04:48
Contact:

#53 Post by s243a »

eztuxer wrote:Still not booting.
Will try with a 8 GB stick instead of 16 GB.
Or even with CD or DVD later.
Using f 12 and legacy chosing the USB stick : it displays the first line "anvin, etc..." but nothing more.
The EFI menu can be accessed but no boot either.
Happy Easter holydays.
Is this a windows 10 booting problem?...because there are a bunch of threads about that:
Puppy Linux has troubles with hard drive for Windows 10.
Windows 10 and Puppy coexisting
Windows 8, 8.1 and 10: How to Boot Puppy

s243a
Posts: 2580
Joined: Tue 02 Sep 2014, 04:48
Contact:

#54 Post by s243a »

stemsee wrote:@Sylvander

Here is a simple script with desktop SAVE button. Should appear if startup without savefile.
This will make a squashfs file and move to /initrd/mnt/dev_ro2 (boot drive) or dev_save. Probably needs to add exclude files and dirs. Needs testing.

Code: Select all

#!/bin/bash
#sfs-direct-save by stemsee copyright (c) 2017 Marcos Contant
ln -s /usr/sbin/sfs-direct-save /root/Startup/sfs-direct-save &> /dev/null
savefn () {
is=`mount | grep 'dev_save'`
	yad --undecorated --skip-taskbar --no-buttons --text "Saving" --progress --pulsate &
	pid=$!
if [[ -d /aufs ]]; then
	. /etc/DISTRO_SPECS
	name=$DISTRO_FILE_PREFIX-`date | tr ' ' '-'`-save.sfs
elif [[ -d /live ]]; then
	name=`date | tr ' ' '-'`-save.squashfs
elif [[ -d /media &&  -d /mnt ]]; then
	. /etc/DISTRO_SPECS
	name=${DISTRO_FILE_PREFIX}-${DISTRO_VERSION}-`date | tr ' ' '-'`-save.sfs
else
	. /etc/DISTRO_SPECS
	name=`date | tr ' ' '-'`-save-$DISTRO_PUPPYSFS
	if [[ -z "$name" ]]; then
		name=q-`date | tr ' ' '-'`-save.sfs
	fi
fi 

   if [[ -e /tmp/$name ]]; then
		mv -f /tmp/$name /initrd/mnt/dev_ro2/$name-old
		sleep 1
   else
		echo "Proceeding with '$name' save in /tmp with '$comp'"
   fi
   svd=`mount | grep 'pup_ro1'`
   if [[ ! -z "$svd" ]]; then
		mksquashfs /initrd/pup_ro1/* /tmp/$name $comp $ef -keep-as-directory -noappend
	else
		mksquashfs /initrd/pup_rw/* /tmp/$name $comp $ef -keep-as-directory -noappend
	fi
	if [[ -z "$is" ]]; then
		mv -f /tmp/$name /initrd/mnt/dev_ro2/
	else
		mv -f /tmp/$name /initrd/mnt/dev_save/
	fi
	kill $pid
	yad --undecorated --skip-taskbar --no-buttons --text "Finished" --timeout 2
	exit 0
}
export -f savefn
if [ -z "$is" ]; then
	ok=`yad --geometry=+300+20 --on-top --no-buttons --skip-taskbar --undecorated --form --field=SAVE:BTN "bash -c savefn"`
fi
Have you considered booting into sandbox.sh for this?

http://distro.ibiblio.org/fatdog/web/faqs/sandbox.html

With sandbox.sh you could even do some kind of incremental save file analogous to saving on the cd.

I suppose though that might have it's on complications for instance if you started the sandbox before xwin boots up would the changes to to the xwin startup be saved?

stemsee

#55 Post by stemsee »

interesting proposal!

here is an update which only shows save icon on desktop if no savefile is being used.

Code: Select all

#!/bin/sh
# sfs-direct-save by stemsee copyright (c) 2017 Marcos Contant
# gpl 3.0
# no warranty use at own risk, 
# 
res=`xrandr | grep '*' | awk '{printf $1}'`
XX=`echo $res | cut -f1 -d'x'`
YY=`echo $res | cut -f2 -d'x'`
is=`mount | grep -e '/initrd/mnt/dev_save'`
svd=`mount | grep -e '/initrd/pup_ro1'`
pos="+20+$((YY - 80))"
export pos is svd
ln -s /usr/sbin/sfs-direct-save /root/Startup/sfs-direct-save &> /dev/null
savefn () {
	yad --geometry=200x20+0+0 --undecorated --no-border --skip-taskbar --no-buttons --text "Saving" --progress --pulsate &
	pid=$!
if [[ -d /aufs ]]; then
	. /etc/DISTRO_SPECS
	name=S_${DISTRO_FILE_PREFIX}`date | tr ' ' '-'`-S.sfs
elif [[ -d /live ]]; then
	name=S_`date | tr ' ' '-'`-S.squashfs
elif [[ -d /media &&  -d /mnt ]]; then
	. /etc/DISTRO_SPECS
	name=S_${DISTRO_FILE_PREFIX}`date | tr ' ' '-'`-S.sfs
else
	. /etc/DISTRO_SPECS
	name=S_`date | tr ' ' '-'`-S-$DISTRO_PUPPYSFS
	if [[ -z "$name" ]]; then
		name=q`date | tr ' ' '-'`-S.sfs
	fi
fi 
	echo "Proceeding with '$name' save on '/$path/$drive' with '$comp'"
	yad --geometry=+0+0 --undecorated --skip-taskbar --no-focus --no-buttons --text "Proceeding with '$name' saved on /intrid/mnt/dev_'save|ro2'" --timeout 1
   if [[ ! -z "$svd" ]]; then
		mksquashfs /initrd/pup_ro1/* /tmp/$name -keep-as-directory -noappend
	else
		mksquashfs /initrd/pup_rw/* /tmp/$name  -keep-as-directory -noappend
	fi
	if [[ ! -z "$is" ]]; then
		mv -f /tmp/$name /initrd/mnt/dev_save/	
	else
		mv -f /tmp/$name /initrd/mnt/dev_ro2/
	fi
	kill $pid
	yad --geometry=+0+0 --undecorated --skip-taskbar --no-focus --no-buttons --text "Finished" --timeout 1
	exit 0
}
export -f savefn
if [ -z "$is" ]; then
	ok=`yad --geometry="$pos" --on-top --no-buttons --no--focus --skip-taskbar --undecorated --form --field=SAVE:BTN "bash -c savefn"`
fi

Post Reply