Search found 2629 matches

by amigo
Fri 21 Dec 2018, 17:13
Forum: Programming
Topic: cal command alternatives
Replies: 45
Views: 17403

In Mexico, people celebrate their own birthday, but also the day of the Saint they are named after. When someone doesn't show up to wrok on Monday, they say one is celebrating San Lunes (Saint Monday).
by amigo
Fri 21 Dec 2018, 17:03
Forum: Users ( For the regulars )
Topic: What is the most reliable filesystem format for Linux?
Replies: 30
Views: 4883

Actually, _pencil_ on paper is more stable than ink, plus it can be used in zero-gravity environments!
by amigo
Thu 20 Dec 2018, 13:26
Forum: Users ( For the regulars )
Topic: What is the most reliable filesystem format for Linux?
Replies: 30
Views: 4883

For stability, then ext3 -exactly because it is not having new features added. The answer will change to 'ext4' when ext5 comes along, or brtfs/xfs.
by amigo
Fri 14 Dec 2018, 12:48
Forum: Browsers and Internet
Topic: WebSearch 0.5
Replies: 66
Views: 16844

What about Wolfram?
by amigo
Thu 13 Dec 2018, 20:39
Forum: Puppy Derivatives
Topic: gtk1.2 puppy anyone?
Replies: 84
Views: 66708

Hi there! my fine GTK1 friend. Got a copy of the source tarball or a link? Greetings from DE.
by amigo
Mon 03 Dec 2018, 13:47
Forum: Cutting edge
Topic: removing kernel modules is safe?
Replies: 6
Views: 3765

You should find out which modules are being loaded and then selectively use rmmod to check whether anything breaks. Or use modinfo to read what the modules says about itself.
by amigo
Mon 26 Mar 2018, 17:07
Forum: Programming
Topic: Find out how many lines of text is in a text file? (Solved)
Replies: 11
Views: 3096

regular=rule-based
by amigo
Fri 16 Feb 2018, 20:49
Forum: Programming
Topic: Wanted: Tiny boot loader for dual floppy boot.
Replies: 4
Views: 1690

lilo?
by amigo
Fri 02 Feb 2018, 19:44
Forum: Users ( For the regulars )
Topic: Why use Ext 3 and not Ext 4 format?
Replies: 17
Views: 5412

I still use ext3 almost exclusively -I like nice and stable file systems.
by amigo
Sun 31 Dec 2017, 19:18
Forum: Programming
Topic: Inject a wav file in to a bash script
Replies: 12
Views: 2931

Think about those *.run files -they are self-extracting scripts. The payload is a tarball or zipped file or whatever. Inside the script you have marker or other method to skip over the first script part, starting from the marker or offset and procesing that with whatever. You can use 'sed', 'head', ...
by amigo
Sat 16 Dec 2017, 15:55
Forum: Cutting edge
Topic: MicroXWin for Puppy
Replies: 23
Views: 20926

No, I found commits still in 2016 here: https://github.com/ghaerr/microwindows And there's a fork/mirror for buildroot here: https://github.com/moovel/microwindows I already started last night picking out the changes made to gtk-1.2.7 by/for NanoGTK and creating clean patches. Then, I'll get those p...
by amigo
Fri 15 Dec 2017, 17:19
Forum: Cutting edge
Topic: MicroXWin for Puppy
Replies: 23
Views: 20926

I found a github repo for microwindows with commits up to 2016. While cloning that here, I found that I already had a microwindows folder with some other goodies, like NanoGTK. Before being abandoned, it was using gtk-1.2.7 and microwindows-0.99. It would be an interesting project to update it to gt...
by amigo
Fri 15 Dec 2017, 10:58
Forum: Misc
Topic: I accidentally delete glibc
Replies: 10
Views: 3393

Thanks for your kind comments. I also respect your accomplishments, knowing full well what it means to cross-compile and/or bootstrap a new architecture. I guess we've never communicated much, but I enjoy being able to 'cut to the chase' with you. src2pkg with chroot... From the start src2pkg was no...
by amigo
Thu 14 Dec 2017, 11:59
Forum: Cutting edge
Topic: MicroXWin for Puppy
Replies: 23
Views: 20926

Ask the developers where one can get the source code -they should be willing to provide it in some form or state.
by amigo
Thu 14 Dec 2017, 11:55
Forum: Users ( For the regulars )
Topic: Puppy Guideline: determining Legacy vs Modern Hardware
Replies: 4
Views: 839

Yes, pae is quite restrictive and so is -i686. Legacy hardware, 10-15 years old, is best served by kernel 2.4 or 2.6.26 at latest. i586 is a good arch -there really are no more 486's being used at all seriously. i586/PentiumI is a good compromise. One could argur for PenitumII as a minimum, but then...
by amigo
Mon 11 Dec 2017, 08:59
Forum: Users ( For the regulars )
Topic: extract many zip/rar files at once?
Replies: 4
Views: 823

Open a terminal window in the dir where the files are and:
unzip *.zip
unrar *.rar
by amigo
Sun 10 Dec 2017, 10:27
Forum: Programming
Topic: Trying to understand program/app start-up methods...
Replies: 7
Views: 1991

LD_LIBRARY_PATH overrides -actually preceeds the normal path for libraries which ld-linux.so uses to start all dynamically-linked programs. Normally ld-linux.so looks first under paths specified in /etc/ld.so.conf. It then looks in the 'trusted' locations, that is, /lib and /usr/lib. By using LD_LIB...
by amigo
Sat 09 Dec 2017, 16:30
Forum: Programming
Topic: Trying to understand program/app start-up methods...
Replies: 7
Views: 1991

AppImage was designed exactly after the Rox AppDir. During construction they look like rox apps. You have a single top dir with content in one or more subdirs. You have an icon file an AppInfo.xml and a *binary* AppRun instead of a script. Then, the whole thing gets packaged into an iso image with a...
by amigo
Sat 09 Dec 2017, 16:14
Forum: Misc
Topic: I accidentally delete glibc
Replies: 10
Views: 3393

You also need to understand the nuances of the tar version and options being used both to create and to unpack the packages. if you've ever wondered why slackware uses an ancient version of tar (1.13) it's precisely because it did/does something which newer versions of tar did not. Someone did at ta...
by amigo
Sat 09 Dec 2017, 10:28
Forum: Programming
Topic: Trying to understand program/app start-up methods...
Replies: 7
Views: 1991

The wrapper sets up the environment for the main program. Most things that will run-from-anywhere need this in order to find what they need. Sometimes this means that everything it needs which is not on the system will be found in the same place as the real-executable -all under one directory. This ...