Showing posts with label GNU. Show all posts
Showing posts with label GNU. Show all posts
Thursday, 23 November 2023
Tuesday, 25 January 2011
ccrypt to encrypt files
If you need to encrypt a file which contains personal data, you can use ccrypt. It's not installed by default on ubuntu so you'll have to do a:
sudo apt-get install ccrypt
but once done you can encrypt your file using
ccrypt -e filename
and decrypt using
ccrypt -d filename
sudo apt-get install ccrypt
but once done you can encrypt your file using
ccrypt -e filename
and decrypt using
ccrypt -d filename
How much RAM do I have on my GNU/Linux machine?
free -m
For a result like this
total used free shared buffers cached
Mem: 1899 1273 626 0 17 858
-/+ buffers/cache: 397 1502
Swap: 5561 23 5538
For a result like this
total used free shared buffers cached
Mem: 1899 1273 626 0 17 858
-/+ buffers/cache: 397 1502
Swap: 5561 23 5538
From gtk-recordmydesktop to youtube in one line
It's good to be back to being a GNU/Linux and in particular Ubuntu, home user.
mencoder oo1.ogg -oac mp3lame -ovc lavc -ofps 30 -vf scale=320:240 -o oo1.mpg
If you don't have mencoder, then you can install it using:
sudo apt-get install mencoder
Subscribe to:
Posts (Atom)