Author Archives: Ahmed Tawfik

Unknown's avatar

About Ahmed Tawfik

Cybersecurity Professional, Systems Engineer, OSS & Linux Geek

How To Decrease Resolution of Output Video File in mencoder

In a previous post, I showed how to change an .ogv file to a .avi one which is useful is you’re going to give the video to a windows user. One problem I faced is that my resolution is too … Continue reading

Tagged , | Leave a comment

How To Find and Delete Files Not Matching MULTIPLE criteria using bash in AIX

“find . ! -name “*.bz2” ! -name “ESPRD*” | xargs rm”  The above command finds all files in the “current” directory excluding those with “*.bz2” extension and those which start with “ESPRD*” and then deletes them all.

Tagged , | Leave a comment

How to add a new data file to Oracle Tablespace using sqlplus

First login as the “oracle” user, and issue the command “sqlplus “/ as sysdba”” (I am assuming that you already have configured the  PATH environment variable correctly) and then type the following:   alter tablespace tablespace_name  add datafile ‘/oracle/data/file1.dbf’ size … Continue reading

Tagged , , | Leave a comment

Convert OGV files to AVI using mencoder

OGV is the default output for the “recordmydesktop” application in ubuntu, and I needed to convert it in order to use another software: mencoder input.ogv -ovc xvid -oac mp3lame -xvidencopts pass=1 -o output.avi

Tagged , , , | Leave a comment

Gwibber : Twitter & Facebook Client in Ubuntu 9.04

A very nice desktop application for feeds from twitter and facebook, don’t use the one packed with Ubuntu 9.04 and use the one from the PPA instead: To download the new version : open synaptic package manager go to Settings … Continue reading

Tagged , , , | 2 Comments