They say everyone has a book in them. I've never been too sure if that's actually true, but thought I'd attempt to get mine out in national novel writing month, which starts tomorrow.
The idea is that you start writing tomorrow, write an average of 1667 words each day in November and have a 50k word novel at the end of the month! Lovely stuff. The emphasis is on quantity, not quality, and theres to be no editing til December.
It doesn't matter if it's disjointed, nonsensical in places or is just plain arse. The idea is simply to get people writing. I for one am going to give it a bash, if you fancy joining me, head on over to NaNoWriMo.org and sign up.
JOIN ME!
A lot of Linux/Unix files you find yourself working with will be compressed using tar and/or gzip. These are files with extensions like .tar and .tar.gz.
Extracting
For.tgz, tar.gz, or tar.z extension use this command:tar -zxvf {filename}
Eg: tar -zxvf filename.tar.gz
This will extract the file for you in the directory you are currently in. Using the above command will save you from having to redirect the output for gzip or anything else (because the z option automatically decompresses the file for you), otherwise without the z argument, you would have to do the extraction for the gzip first, then do a tar -xvf for the tar archive.
Archiving
To create a gzipped .tar file, use the following command...
tar -cf {filename}
...to create filename.tar
Eg: tar -cf filename
- Then -
gzip {filename.tar}
...to create filename.tar.gz