I came from the Windows world and uses cls to clear the terminal screen. So, I wanted to add a global alias for the cls command. To add the alias, you have to make an entry to the .bashrc file in the Home folder.
global_keybindings not working in Ubuntu 9.04
- Launch gconf-editor by typing in a terminal: gconf-editor.
- In gconf-editor choose apps » metacity » global_keybindings.
How to check whether two files are equal in Linux?
md5sum second.so
diff first.so second.so
Aardvark: Mozilla Firefox Add-ons
- Clean up unwanted banners and surrounding "fluff," especially prior to printing a page
- See how the page is created, block by block
- View the source code of one or more elements
How to play region coded DVD in computer?
The best way to do is to play the DVD in VLC, a free media player. VLC media player is a highly portable multimedia player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg, ...) as well as DVDs, VCDs, and various streaming protocols. It can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network.
How to check dependencies of any executable file?
How to make Git ignore files and directories?
When you run the git status command, it will show all files that are not yet committed or added to staged area. There are so many temporary files and folders which you don't want to add to the source control repository.
How to create Git shortcut aliases?
vi .git/config
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[alias]
ci = commit
st = status
co = checkout
b = branch
l = log
d = diff
cmesg = log --pretty=format:"%s"
How to check the Ubuntu version currently running?
cat /etc/issue
Ubuntu 9.04 \n \l
cat /etc/redhat-release
Enterprise Linux Enterprise Linux AS release 4 (October Update 5)
How to disable warning in g++ in Linux?
warning: deprecated conversion from string constant to ‘char*’