Linux BlogLinux BlogThis blog is about everything Linux. It is a diary of my Linux journeys that will hopefully benefit other Linux users. Articles
screen ? .screenrc configuration file
2007-09-18 03:35:00 Linux has many useful tools and utilities. Remote shell manager called screen is certainly one of them. screen allows for remote persistent shell sessions that are immune to connection hangups. The manager has an extensive and powerful set of features. Once mastered, it becomes an essential tool. ©2007 dsplabs.com.au More About: Screen , Linux , Tools , File , Configuration
screen ? .screenrc configuration file
2007-09-18 03:35:00 Linux has many useful tools and utilities. Remote shell manager called screen is certainly one of them. screen allows for remote persistent shell sessions that are immune to connection hangups. The manager has an extensive and powerful set of features. Once mastered, it becomes an essential tool. ©2007 dsplabs.com.au More About: Screen , Linux , Tools , File , Configuration
mencoder ? dvd rip one-liner
2007-08-16 11:43:00 I use mencoder to rip DVDs into .avi files under Linux . The following one-liner assumes that the DVD is mounted and available under dvd://, the first track is to be encoded into MPEG4 video with 1200Kbps bit rate, the video is (or gets) scaled to 640 width, the lame lib is used to encode sound ... More About: Tools , Coder
mencoder ? dvd rip one-liner
2007-08-16 11:43:00 I use mencoder to rip DVDs into .avi files under Linux . The following one-liner assumes that the DVD is mounted and available under dvd://, the first track is to be encoded into MPEG4 video with 1200Kbps bit rate, the video is (or gets) scaled to 640 width, the lame lib is used to encode sound ... More About: Tools , Coder
mencoder ? dvd rip one-liner
2007-08-16 11:43:00 I use mencoder to rip DVDs into .avi files under Linux . The following one-liner assumes that the DVD is mounted and available under dvd://, the first track is to be encoded into MPEG4 video with 1200Kbps bit rate, the video is (or gets) scaled to 640 width, the lame lib is used to encode sound ... More About: Tools , Coder
mencoder ? dvd rip one-liner
2007-08-16 11:43:00 I use mencoder to rip DVDs into .avi files under Linux . The following one-liner assumes that the DVD is mounted and available under dvd://, the first track is to be encoded into MPEG4 video with 1200Kbps bit rate, the video is (or gets) scaled to 640 width, the lame lib is used to encode sound ... More About: Tools , Coder
rar and unrar ? rar compression and decompression tools
2007-08-13 15:48:00 Example usage Create a rar archive archive.rar containing directory dir: rar a archive.rar dir/ # ©2007 dsplabs.com.au Create a rar archive archive.rar containing files file1.dat, file2.dat, file3.dat: rar a archive.rar file1.dat file2.dat file3.dat # ©2007 dsplabs.com.au and, more general: rar a archive.rar file?.dat # ©2007 dsplabs.com.au rar a archive.rar *.* # ©2007 dsplabs.com.au Create a password protected rar archive archive.rar with password set ... More About: Linux , Tools , Compression , Compress
rar and unrar ? rar compression and decompression tools
2007-08-13 15:48:00 Here are some useful examples of rar and unrar usage under Linux shell. To create a rar archive archive.rar containing directory called dir use the following command. More About: Tools , Compression , Compress
rar and unrar ? rar compression and decompression tools
2007-08-13 15:48:00 Here are some useful examples of rar and unrar usage under Linux shell. To create a rar archive archive.rar containing directory called dir use the following command. More About: Tools , Compression , Compress
rar and unrar ? rar compression and decompression tools
2007-08-13 15:48:00 Example usage Create a rar archive archive.rar containing directory dir: rar a archive.rar dir/ # ©2007 dsplabs.com.au Create a rar archive archive.rar containing files file1.dat, file2.dat, file3.dat: rar a archive.rar file1.dat file2.dat file3.dat # ©2007 dsplabs.com.au and, more general: rar a archive.rar file?.dat # ©2007 dsplabs.com.au rar a archive.rar *.* # ©2007 dsplabs.com.au Create a password protected rar archive archive.rar with password set ... More About: Linux , Tools , Compression , Compress
mmv ? move multiple files by wildcard patterns
2007-07-15 11:11:00 Introduction If you ever have to rename or move multiple files under Linux , then the mmv©2007 dsplabs.com.au shell command will make your life easy. The mmv utility will also come in handy for copying multiple files, appending content of one file to other files, as well as for creation of links. More About: Tools , Move , Files , Patterns
mmv ? move multiple files by wildcard patterns
2007-07-15 11:11:00 Introduction If you ever have to rename or move multiple files under Linux , then the mmv©2007 dsplabs.com.au shell command will make your life easy. The mmv utility will also come in handy for copying multiple files, appending content of one file to other files, as well as for creation of links. Installation While mmv©2007 dsplabs.com.au is typically not ... More About: Tools , Move , Files , Patterns
mmv ? move multiple files by wildcard patterns
2007-07-15 11:11:00 Introduction If you ever have to rename or move multiple files under Linux , then the mmv©2007 dsplabs.com.au shell command will make your life easy. The mmv utility will also come in handy for copying multiple files, appending content of one file to other files, as well as for creation of links. Installation While mmv©2007 dsplabs.com.au is typically not ... More About: Tools , Move , Files , Patterns
mmv ? move multiple files by wildcard patterns
2007-07-15 11:11:00 Introduction If you ever have to rename or move multiple files under Linux , then the mmv©2007 dsplabs.com.au shell command will make your life easy. The mmv utility will also come in handy for copying multiple files, appending content of one file to other files, as well as for creation of links. More About: Tools , Move , Files , Patterns
tar bz2 a directory ? .bashrc macros and functions
2007-07-10 10:05:00 To make compression of directories into .tar.bz2 archives quick and simple, put the following function in your .bashrc file: tar_bz2_dir() { # ©2007 dsplabs.com.au if [ "$1" != "" ]; then FOLDER_IN=`echo $1 |sed -e 's/\/$//'`; FILE_OUT="$FOLDER_IN.tar.bz2"; ... More About: Linux , Directory , Functions , Configuration , Macros
tar bz2 a directory ? a .bashrc function
2007-07-10 10:05:00 To make compression of directories into .tar.bz2 archives quick and simple, put the following function in your .bashrc file: More About: Linux , Directory , Configuration , Function , Rect
tar bz2 a directory ? .bashrc macros and functions
More articles from this author:2007-07-10 10:05:00 To make compression of directories into .tar.bz2 archives quick and simple, put the following function in your .bashrc file: tar_bz2_dir() { # ©2007 dsplabs.com.au if [ "$1" != "" ]; then FOLDER_IN=`echo $1 |sed -e 's/\/$//'`; FILE_OUT="$FOLDER_IN.tar.bz2"; ... More About: Linux , Directory , Functions , Configuration , Macros 1, 2, 3, 4 |



