Setting a larger console font on Ubuntu 12.04.

Setting a larger console font on Ubuntu Linux 12.04. To do this first get to a text console by pressing Ctrl-Alt-F2 and login with your username ↦ password, then type this command to set a larger font. setfont /usr/share/consolefonts/Lat7-TerminusBold28x14.psf.gzsetfont /usr/share/consolefonts/Lat7-TerminusBold28x14.psf.gz This is a nice large font and is more readable if you are on a … Read more

How to create a dot matrix printer banner with Linux and other useful Linux tricks.

The printerbanner command will create a dot matrix printer banner. Just run the command and then type a string and hit ENTER. jason@debian:~$ printerbanner Message: Debianjason@debian:~$ printerbanner Message: Debian Print out the contents of a text file in octal format. jason@debian:~$ od .dmrc 0000000 042133 071545 072153 070157 005135 060514 063556 060565 0000020 062547 062475 … Read more

Monitorix, a nice monitoring tool for Linux systems.

To install this very useful Linux monitoring tool on your Linux system, firstly add this line to your /etc/apt/sources.lst file. deb http://apt.izzysoft.de/ubuntu generic universedeb http://apt.izzysoft.de/ubuntu generic universe Then download the required GPG key for the apt packages. wget http://apt.izzysoft.de/izzysoft.ascwget http://apt.izzysoft.de/izzysoft.asc And then add this GPG key to apt. jason$ sudo apt-key add izzysoft.asc OKjason$ sudo … Read more

How to change the Ubuntu hostname easily.

Change the hostname easily on your Ubuntu or Linux Mint machine To change the hostname of an Ubuntu machine, there are a couple of files that need editing. Firstly, open the /etc/hostname file and change the hostname in here to the one you wish to use. 09:51:17 0 ~ jason$ sudo vim /etc/hostname09:51:17 0 ~ … Read more

How to get comprehensive information on HDD errors on Debian.

The smartmontools package for Debian allows the user to get comprehensive hard disk information. This is useful if the hard disk drive is behaving strangely. This might mean it is failing. Install the smartmontools package. root@neo:/home/jason# apt install smartmontoolsroot@neo:/home/jason# apt install smartmontools Now you may check your hard disk drive for any errors. root@neo:/home/jason# smartctl … Read more

Installing Debian from the netinstall ISO image is very easy.

Installing Debian from the minimal netinstall image is very easy indeed. The ISO image is available at this link. http://cdimage.debian.org/debian-cd/8.5.0/amd64/iso-cd/debian-8.5.0-amd64-netinst.iso. This version of the netinstall ISO contains extra firmware if this is required. http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/8.5.0+nonfree/amd64/iso-cd/firmware-8.5.0-amd64-netinst.iso. Now we can begin installation of the Debian distribution. Choose the language for the installation. Now select the country where you … Read more

Debian Linux FAQ.

This is the FAQ containg all the answers to your Debian Linux questions. The Debian Linux FAQ contains a great amount of information pertaining to the Debian GNU/Linux distribution. https://drive.google.com/open?id=1XoEX7hJRkDbGYBHigWkd9TJE66bNILxuFvByFO9cbieufOPTcYQL0n7U_Hhr. Have a read of this and you will learn a great deal about setting up and using your new Debian system. Securing Debian HOWTO. https://www.debian.org/doc/manuals/securing-debian-howto/. … Read more

Beautiful wallpapers for your Linux desktop.

A gorgeous terraced rice paddy in China I think: https://4walled.cc/src/c0/c06806e6e7aa41e530ae8355aa2271fb.jpg Beautiful farm gate photograph: https://4walled.cc/show-584332. Curving road in morning mist: https://4walled.cc/show-111104. Dual monitor corn field photograph: https://4walled.cc/show-84524. Man using a tin for target practice on his farm: https://4walled.cc/show-579294. Oil refinery gas flare: https://4walled.cc/show-1286049. Arches national park Utah: https://4walled.cc/show-389564. More wallpaper posts. More awesome wallpapers for … Read more

Create aliases with the Linux command line to make commands easier to remember.

Creating an alias for bash makes remembering a command easier. This is how longer commands may be simplified. Here is an example. [jason@darknet:~] alias lseasy=’ls -lAhF'[jason@darknet:~] alias lseasy=’ls -lAhF’ This is the output. [jason@darknet:~/Videos] lseasy total 4.8G -rw-r–r– 1 jason jason 18 Mar 24 13:34 authrootseq.txt -rw-r–r– 1 jason jason 23K Mar 24 13:55 heap2.htm … Read more

How to update packages on your Debian GNU/Linux system.

The packages on your Debian GNU/Linux system must be kept up to date to ensure the security concerns are addressed. Use this command to install any pending updates. sudo apt-get update; sudo apt-get upgradesudo apt-get update; sudo apt-get upgrade The Debian user may also use this command. sudo aptitude update; sudo aptitude safe-upgradesudo aptitude update; … Read more

Debian 8 still stores WIFI passwords in plain text.

The /etc/NetworkManager/system-connections directory in Debian and Ubuntu stores files that are named after the WIFI networks you have connected to. These contain the passwords for the wireless networks that your machine has connected to. Here is a sample file. [connection] id=detportal uuid=539c7711-95ba-4f0a-8797-33d32ec779d7 type=802-11-wireless   [802-11-wireless] ssid=detportal mode=infrastructure security=802-11-wireless-security   [802-11-wireless-security] key-mgmt=wpa-psk psk=detportal   [ipv4] method=auto … Read more

Get hardware information with the Linux command line on Debian.

The hwinfo command for Linux will allow the user to get hardware information from the command line. Type sudo apt-get install hwinfo to install this command. It will be installed in the /sbin directory and therefore, you will need superuser privileges to execute this command and get the hardware information. jason@darkstar:~$ sudo apt-get install hwinfojason@darkstar:~$ … Read more

Get information about your computer hardware with Linux.

Get information about installed hardware with these commands This command will print the make and model of your motherboard. jason@eyjafjallajkull:~$ sudo dmidecode -t baseboard [sudo] password for jason: # dmidecode 2.12 SMBIOS 2.4 present.   Handle 0x0002, DMI type 2, 8 bytes Base Board Information Manufacturer: Gigabyte Technology Co., Ltd. Product Name: H55-USB3 Version: x.x … Read more

How to get information about logins on your Linux system.

Reading information about logins on a Linux system is very useful when you are running a Linux machine. The last command will print information about the last logins on a Linux system. ubuntu ~ $ last ubuntu pts/0 ip-10-8-0-6.ap-s Sun Apr 19 10:25 still logged in   wtmp begins Sun Apr 19 10:25:42 2015ubuntu ~ … Read more

How to force a re-boot or shutdown if the traditional commands will not work.

If your machine has errors with the hard disk and your machine has booted with a read-only filesystem, these commands can force your machine to either shutdown or reboot. Forced re-boot. echo 1 > /proc/sys/kernel/sysrq echo b > /proc/sysrq-triggerecho 1 > /proc/sys/kernel/sysrq echo b > /proc/sysrq-trigger Forced shutdown. echo 1 > /proc/sys/kernel/sysrq echo o > … Read more