Display Line Numbers in nano
nano is a popular text editor for Linux/UNIX. In order to display line numbers, edit global configuration file (or user file /home/user/.nanorc) nano /etc/nanorc Go to line 49 (approximately) and…
nano is a popular text editor for Linux/UNIX. In order to display line numbers, edit global configuration file (or user file /home/user/.nanorc) nano /etc/nanorc Go to line 49 (approximately) and…
A simple solution to scan your network is nmap. Avoid to use nmap in external networks, as it could be considered as an "attack". To install nmap in Debian/Ubuntu apt-get…
A I am running Linux (Archlinux or Debian) on my workstations and I use XFCE for desktop environment. I keep two portable backup versions one in an ext3 usb external…
To take a screenshot from command line (even from ssh connection) in a system running X server: xwd -out screenshot.xwd -root -display :0.0 More about xwd here. More options here.
Use the powerful find command with exec parameter to change permissions using chmod. To change permissions to 644 for all files in /path/to, use the following command: find /path/to -type…