Tux Linux One Stanza Tips SourceForge.net logo
    The Freedom of Choice English Espaņol
Information
Downloads
Miscellaneous

What's There
 Total snippets  750
 New snippets  100
 Release  #12
Free As In Freedom

GNU Power

If you want to become an active member of our project, join:
LOST Mailing List : http://frodo.hserus.net/mailman/listinfo/howtos/


Submissions and contributions to the LOST (Linux One Stanza Tips) project are currently through e-mails only. May be sent as attachments (or within body of mail) in plain text format to the Co-ordinator.

Snippets : Check if it exists

Scripts/ programs: These may be sent as attachments. All programs should have a seperate README file, documenting its purpose and usage.

Development group : howtos@frodo.hserus.net
Co-ordinator : USM Bish <usmbish@users.sourceforge.net>
Spanish pages : Manuel García <caronte@eresmas.net>


A Random LOST snippet

           

####[ GNU/Linux One Stanza Tip (LOST) ]####################### Sub : Backing up full partitions to CDs LOST #412 #tar -czvf home-backup.tar.gz /home # Make big tarball #split -b 650m home-backup.tar.gz # Split into chunks #for i in `ls xa*`; do mkisofs -o $i.iso $i; done #for j in `ls xa[a-z].iso`; do cdrecord -v blank=fast \ speed=2 dev=0,0 $j; done # And burn CD [for joining: cat /path/to/cdrom/xa* >> home-backup.tar.gz ] ####[ajitabhpandey (at) users.sourceforge.net]################