[no subject]

2010-07-15 Thread aztec007
http://www.conexaoinfo.srv.br/about.php -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

[no subject]

2010-07-15 Thread aztec007
http://www.cavexpert.com/about.php -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

[no subject]

2010-07-15 Thread aztec007
http://meduza.e.pl/about.php -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

[no subject]

2010-07-15 Thread aztec007
http://mybulli.de/about.php -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

[no subject]

2010-07-15 Thread aztec007
http://beaufboutique.com/about.php -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

[no subject]

2010-07-15 Thread aztec007
http://cirl.org/about.php -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

/etc/limits

2010-07-15 Thread Andrew Benton
Hello world. I was reading today about a fork bomb http://en.wikipedia.org/wiki/Fork_bomb and running the example code :(){ :|: };: locked my system up hard. A bit more reading lead me to conclude that the simplest way to restrict the number of processes a user can spawn is by editing

Re: Ch. 6 GlibC Install Failure from Package Management--Which headers to use [Solved]

2010-07-15 Thread Dan McGhee
On 07/14/2010 04:50 PM, Andrew Benton wrote: On 14/07/10 20:18, Dan McGhee wrote: In addition to the testing failures I've documented in another thread, I've also had an installation failure with GlibC-2.11.2. I know the cause though. It's a result of using the More Control and Package

A Useful Command Combo (find | cpio)

2010-07-15 Thread Dan McGhee
Yesterday as I proceeded with my GlibC adventures, I finally got to the point at which I needed to rebuild it. Another speed bump! After I had configure GlibC and Adjusted the Tool Chain, I uninstalled GlibC to start again. I obviously couldn't do it. Nor could I do anything by reverting

Re: /etc/limits

2010-07-15 Thread Neal Murphy
On Thursday 15 July 2010 07:38:08 Andrew Benton wrote: Hello world. I was reading today about a fork bomb http://en.wikipedia.org/wiki/Fork_bomb and running the example code :(){ :|: };: locked my system up hard. A bit more reading lead me to conclude that the simplest way to restrict the

Re: LFS (Version SVN-20100529) - booting in the new system

2010-07-15 Thread William Immendorf
On Thu, Jul 15, 2010 at 10:14 AM, Face falaz...@gmail.com wrote: after finishing the book i try to boot to the new system but nothing happen i only get this Booting from Hard Disk ... and it freeze Again?!?! Did you learn anything from the last thread? Did you replace all instances of

Re: LFS (Version SVN-20100529) - booting in the new system

2010-07-15 Thread Face
I did you replace all instances of /dev/hda with /dev/sda last time i had the problem and i did replace them this time However i still get only Booting from Hard Disk ... and it freeze On Thu, Jul 15, 2010 at 7:29 PM, William Immendorf will.immend...@gmail.com wrote: On Thu, Jul 15, 2010 at

Re: A Useful Command Combo (find | cpio)

2010-07-15 Thread Timothy Rice
... I have discovered a convenient and powerful command line combination. It's presented in The CPIO Manual http://www.gnu.org/software/cpio/manual/. Code: find . -depth -print0 | cpio --null -pvd $new-directory ... I hope someone finds this helpful. Yes, thanks! Very timely. ~ Tim