Suse & OpenSuse : Tips, Tricks, Tutorials, How Tos and Troubleshooting

Monthly Archives: April 2009

How to create shortcuts on Gnome desktop

Shortcuts on Linux is known as soft links and traditionally, this can be achieved by using the “ln –s” command and option.  You can also achieve this on the Gnome desktop using the mouse only.  However, unlike the Windows way to create a shortcut where you right click on the folder/file and near the bottom [...]

How to mount NFS Filesystems at Boot Time

Network File System (NFS) is a network file system protocol originally developed by Sun Microsystems in 1984. With NFS, clients can mount filesystems across the network that are being offered by NFS servers and can work with them as if they were filesystems mounted from local disks. NFS is a simple and widely used method [...]

Taking screenshots in SuSE

SuSE Enterprise Linux Server comes with this simple yet effective tool to assist you to take screenshots.  This is basically the same as using the “Print Screen” button and it can also be used to take a shot of the windows only, like using “Alt-Print Screen”.

Using redirections: 2>&1 (Part 2 of 2)

If you go through enough shell scripts, you will notice the frequent use of 2>&1.  What does it mean and how it works? We have briefly introduced standard in (stdin) and standard out (stdout).  In the command line interface and also in shell programming, these are represented as follows: 0 Standard In (STDIN) 1 Standard [...]

Using redirections; <, >, >> (Part 1 of 2)

Redirections can be sometimes confusing to learn and utilize effectively.  We will try to explain it in the simplest possible way that we think is effective.  Please feel free to suggests a better approach to explaining it. Firstly, the 3 basic redirections. < ; this less than symbol is to instruct the shell to read [...]