DAMZIE.net – The Geeky Things

Just another BS

The Fifteen Greatest Hacking Exploits

  • Filed under: News
Sunday
Mar 30,2008

Jeremy gave me this link. Such an interesting read.

Click here to read more.

Tulibu Dibu Douchoo

Friday
Mar 14,2008

This is so dumb!

Google Android

  • Filed under: Youtube
Wednesday
Mar 12,2008


This is impressive stuff!

download Boogie Nights movie

HOW TO: Record Your Desktop

Tuesday
Mar 11,2008

Another simple tutorial post from me.

So, have you ever wanted to record your desktop to create video tutorials, or to show off your desktop to your friends on Youtube? recordMyDesktop is a simple and easy application for these desktop recording and I have been using it since forever!

recordMyDesktop is a desktop session recorder that attempts to be easy to use, yet also effective at it’s primary task. As such, the program is separated in two parts; a simple command line tool that performs the basic tasks of capturing and encoding and an interface that exposes the program functionality in a usable way.

recordMyDesktop has the ability to record audio through ALSA, OSS or the JACK audio server.

To install recordMyDesktop, we start with typing the following to the terminal:

adamz@Ubuntu:~$ sudo apt-get install recordmydesktop gtk-recordmydesktop

Now you have two ways to use recordMyDesktop:

  • Terminal
  • GUI

To use it through terminal just type the following:

adamz@Ubuntu:~$ recordmydesktop

recordMyDesktop will start capturing and once you’re done press Ctrl + C and the video file will be stored in your /home/username/ directory.

If you prefer to use the GUI, go to Applications > Sound & Video > gtk-recordMyDesktop

From there you can record your desktop straight away, to stop the recording just click on the white box on your system tray.

The default video output will be in OGG format. Though you can convert it to AVI using mencoder. You can install it by typing the following on your terminal:

adamz@Ubuntu:~$ sudo aptitude install mencoder

Once you’re done installing mencoder you can start converting your OGG file to AVI format using the following:

adamz@Ubuntu:~$ mencoder -idx ogg_format_filename.ogg -ovc lavc -oac mp3lame -o new_avi_format_filename.avi

Hope it’s useful :)

Monday
Mar 10,2008

I’m going to start writing simple Linux tutorials for my own references because I have a bad memory when it comes to these simple things and I’m just so lazy to surf for it over and over again. If you think it’s useful for you then do use them and leave me a comment or something. Today’s post is about Alien. (nope not those UFO aliens, or weird-o type of people that SOME of you refer to as ‘aliens’)

If you’re using Ubuntu and you have RPM files that you wish to install and want to change it’s format to .deb debian package, then you’ll need to use alien. Alien is a program that converts between rpm, dpkg and slackware tgz file formats.

To install it simply go to your terminal and type:

adamz@Ubuntu:~$ sudo apt-get install alien

To use alien type the following on your terminal:

adamz@Ubuntu:~$ sudo alien -k rpm_file_name.rpm

And it will convert your .rpm file to .deb format. This might take a while depending on the size of your file.

To install deb files type the following on your terminal:

adamz@Ubuntu:~$ sudo dpkg -i deb_file_name.deb

And your deb file will be installed.