Page 2 of 3

Posted: Sun 21 Aug 2016, 06:59
by s243a
greengeek wrote:
TyroBGinner wrote:I am requesting the current version of TeX, but certainly no one should break their neck trying to provide it - the TeX Live iso serves its purpose pretty well.
Yikes!! This link says the iso is 2GB ! Surely there can't be a puppy fat enough to run that can there??
I think the way to do it rather than as part of the intial iso is to do a science/math service pack for puppylinux.

Posted: Sun 21 Aug 2016, 10:37
by nic007
I think a standard barebones puppy (32 and 64 bit) should be issued with necessary drivers, networking, printing intact. Then we need a dedicated repository for applications ie. Pets, sfs's, etc. which will all work with this standard issue (the necessary libs included). This will make things easier and give the user freedom of choice.

Posted: Sun 21 Aug 2016, 20:10
by Sailor Enceladus
nic007 wrote:I think a standard barebones puppy (32 and 64 bit) should be issued with necessary drivers, networking, printing intact. Then we need a dedicated repository for applications ie. Pets, sfs's, etc. which will all work with this standard issue (the necessary libs included). This will make things easier and give the user freedom of choice.
I like this approach too, having an almost empty menu and then populating it with whatever you need/want from PPM after.

Posted: Sun 21 Aug 2016, 20:58
by learnhow2code
Sailor Enceladus wrote:I like this approach too
why hasnt anyone made a pup yet specifically for running woof-ce?

Posted: Sun 21 Aug 2016, 22:53
by greengeek
Rattlehead wrote:. What F.lux and other programs of its kind do (and the physical screen filters too), is eliminating the blue light component from the light beam.
Mike Walsh just posted re a similar program here:
http://www.murga-linux.com/puppy/viewto ... 322#919322

Posted: Mon 22 Aug 2016, 03:03
by nic007
Sailor Enceladus wrote:
nic007 wrote:I think a standard barebones puppy (32 and 64 bit) should be issued with necessary drivers, networking, printing intact. Then we need a dedicated repository for applications ie. Pets, sfs's, etc. which will all work with this standard issue (the necessary libs included). This will make things easier and give the user freedom of choice.
I like this approach too, having an almost empty menu and then populating it with whatever you need/want from PPM after.
To add to this approach, users should be encouraged to rather use sfs-addons instead of installing stuff and/or doing remasters which is unnecessary. Keep it simple.

Posted: Mon 22 Aug 2016, 06:05
by s243a
nic007 wrote:
Sailor Enceladus wrote:
nic007 wrote:I think a standard barebones puppy (32 and 64 bit) should be issued with necessary drivers, networking, printing intact. Then we need a dedicated repository for applications ie. Pets, sfs's, etc. which will all work with this standard issue (the necessary libs included). This will make things easier and give the user freedom of choice.
I like this approach too, having an almost empty menu and then populating it with whatever you need/want from PPM after.
To add to this approach, users should be encouraged to rather use sfs-addons instead of installing stuff and/or doing remasters which is unnecessary. Keep it simple.
I think that in most cases SFS are preferable. However, I have noticed that when you are using large amounts of ram, sfs might get pushed partly into the swap partition. As a consequence, perhaps it makes sence to have for instance one browser installed as a pet, and have the rest as sfs files which can be easily unloaded or re-loaded if needed.

Posted: Mon 22 Aug 2016, 06:56
by nic007
s243a wrote:
nic007 wrote:
Sailor Enceladus wrote: I like this approach too, having an almost empty menu and then populating it with whatever you need/want from PPM after.
To add to this approach, users should be encouraged to rather use sfs-addons instead of installing stuff and/or doing remasters which is unnecessary. Keep it simple.
I think that in most cases SFS are preferable. However, I have noticed that when you are using large amounts of ram, sfs might get pushed partly into the swap partition. As a consequence, perhaps it makes sence to have for instance one browser installed as a pet, and have the rest as sfs files which can be easily unloaded or re-loaded if needed.
If you have lots of RAM you do not need a swap partition or a swap file. Generally, sfs's are not loaded into RAM but when you use the application part of it will reside in RAM or swap . If you add SFS's to a zdrv, it will load fully into RAM if you have enough RAM.

Posted: Mon 22 Aug 2016, 21:16
by rufwoof
Fred has a couple of features in DebianDog64 to extend the amount of ram allocated to changes being recorded in memory space, and to flag up (pop up message) when that memory is getting low. A nice extension to that would be to allocate swap file space ... somewhat dynamically. Most of the time swap might be idle/unused, but comes in handy to keep the system running when heavily loaded, such as video rendering in memory space.

Detect when memory is getting low (as per Fred's script) and ...

dd if=/dev/zero of=swapfile bs=1024k count=1024
mkswap swapfile
swapon swapfile

type thing (that creates and activates a 1GB swapfile)

Posted: Mon 22 Aug 2016, 22:11
by greengeek
rufwoof wrote:Detect when memory is getting low (as per Fred's script) and ...

dd if=/dev/zero of=swapfile bs=1024k count=1024
mkswap swapfile
swapon swapfile

type thing (that creates and activates a 1GB swapfile)
Interesting idea. Where does it create it?

Posted: Tue 23 Aug 2016, 13:41
by rufwoof
greengeek wrote:
rufwoof wrote:Detect when memory is getting low (as per Fred's script) and ...

dd if=/dev/zero of=swapfile bs=1024k count=1024
mkswap swapfile
swapon swapfile

type thing (that creates and activates a 1GB swapfile)
Interesting idea. Where does it create it?
In that example ... in the current directory :)

I was just showing a example. My sda2 is a large ext3 format that I store data on so if I intend to render a largish video or whatever intensive activity, as more usually I don't have a swap partition/file active I usually create/activate a swapfile in the root of that sda2 partition before doing that activity. Something like :

Code: Select all

cd
mkdir -p sda2
mount /dev/sda2 sda2
cd sda2
if [ ! -f swapfile ]; then
 dd if=/dev/zero of=swapfile bs=1024k count=1024 
 mkswap swapfile
 swapon swapfile
fi
Can still grind to a halt, but less so and less often than running without a swap, which if all of memory is exhausted with 'user data' tends to just totally lockup.

Posted: Tue 23 Aug 2016, 15:04
by musher0
learnhow2code wrote:
Sailor Enceladus wrote:I like this approach too
why hasnt anyone made a pup yet specifically for running woof-ce?
;)

Code: Select all

"To keep the suicide rate low among developers."
If you think the above is the right answer, hit Enter now.

If you think the right answer should be: 
"To keep the hair-pulling rate low among developers",
type any printable key and press Enter.
;)

Posted: Tue 23 Aug 2016, 15:40
by learnhow2code
rufwoof wrote:Detect when memory is getting low (as per Fred's script) and ...

dd if=/dev/zero of=swapfile bs=1024k count=1024
mkswap swapfile
swapon swapfile
a couple suggestions:

1. i think puppy already automounts swap on boot. i think thats fine, that probably saves more trouble than it causes. its a very puppy-like thing to do.

2. if the user has a partition mounted rw with 1g free, go ahead and create the swapfile.

3. if the user does not have a partition mounted rw with 1g free, popup a window and offer a choice of partitions to create a file on-- include the options:

* no, i will take my chances with low ram
* i dont know, just pick whatever is best

automounting a unmounted partition to create a new swapfile seems like a good way to cause trouble. consider that the pupsave isnt created without a prompt, and follow that example.

Posted: Fri 26 Aug 2016, 21:38
by musher0
About the swap file:

-- older Puppies created a 256 Mb swap file on first boot if neither swap
partition nor swap file were detected on the disk. Maybe do a test with
newish Puppies to confirm or infirm that.

If the new Puppies still do it, then we don't need to waste any energy! ;)

Flash has kindly made sticky my set of ready-made swap files
and pup-save files here. Basically, choose the size of
your swap file, download it, unzip it and use.


Simple as pie.

Rule of thumb:
-- if you have over 2 Gb's of RAM, 500 Mb of swap file is enough.
-- if you have less, get the file with +/- 2.5 times your amount of RAM.

Final consideration -- A swap file is always a stop-gap measure. It will
prevent your computer from freezing if all your RAM gets filled up, but
using it always seriously s-s-l-l-o-o-w-w-s-s down your machine.

To minimize the possibility of this slow down -- and of resorting to using
the swap file in the first place--, if you know program X is a RAM guzzler,
quit from all other programs before you run program X. (And keep your
fingers crossed!)

BFN.

Posted: Fri 26 Aug 2016, 21:46
by Sailor Enceladus
musher0 wrote:Simple as pie.
Do you mean making pie from scratch or buying ready-made cooked pie? I can't even make Kraft Dinner! :lol:

Posted: Fri 26 Aug 2016, 22:04
by musher0
Sailor Enceladus wrote:
musher0 wrote:Simple as pie.
Do you mean making pie from scratch or buying ready-made cooked pie? I can't even make Kraft Dinner! :lol:
Poor thing! You must be just skin and bones, eh?! :lol:

I mean: simple as eating a piece of already cooked blueberry or apple or
cherry or lemon or meringue pie, put on the table in front of you by a
friendly waitress in a lovely little china plate decorated with some flowery
pattern, with a fork. :D

Posted: Fri 26 Aug 2016, 23:18
by dancytron
I am a big fan of GTK Youtube Viewer.

video playing and management of collections.

Posted: Thu 23 Feb 2017, 08:14
by Pelo
Puppy has too much choice in some sections (graphics) and not enough in others (video playing and management of collections). It's a pity some Puppies have to use again Gxine to be able to play DVDs.
These apps are no longer tested before release. As users (thousands still use their computers to play CDs or DVDs, mostly children before going to bed).
CD burning is used by our colleagues, even by famous Puppy makers.
With Mistfire, we hardly found an application able to play DVDs..

Posted: Thu 23 Feb 2017, 13:24
by Flash
I'd like to see tree incorporated into ROX-filer's right-click menu. At least, how about a .pet that does that?

Posted: Thu 23 Feb 2017, 16:56
by greengeek
Flash wrote:I'd like to see tree incorporated into ROX-filer's right-click menu. At least, how about a .pet that does that?
Thanks Flash - I hadn't seen mushers tree thread so i have now added that to my watchlist. If we are lucky don570 may come up with a rightclick menu for tree (if not already incorporated in one of his rightclick menus...).

What version of Puppy would you be wanting a pet for?