Split and merge files from the command line

Split and merge files from the command line

Original Article by Juan Valencia Although some file archivers offer us the option of split the files, this can be easily accomplished with two commands: split and cat. Splitting a file with split split just needs the size of the parts that we want to create, and the file that we want to split, e.g.: split -b 1024 file_to_split.binsplit […]

Linux system info, cheat sheet

Linux system info, cheat sheet

This is a small collection of commands that can give you information on a Linux computer. Most of this commands can be run as non-privileged user, but more information can be obtained if (and should be) run as root: General system information: # uname -a List all hardware lshw |less Alternative with Gtk frontend lshw-gtk

Easy image mounting with CDemu and Nautilus

Easy image mounting with CDemu and Nautilus

I was in need to mount some image from Nero, and so i discovered an useful small program: CDEmu. CDEmu is a CD/DVD-ROM device emulator for linux, licensed under GPL v2 or later. It is a from-scratch rewrite of the legacy CDEmu project, which was started by Robert Penz. And while i was searching for […]