New Tabby terminal coded as an Electron app.

The new Tabby terminal is coded as an Electron app. This is a new terminal emulator for Linux. This works very well on Arch Linux. This was supplied as a *.pacman file. To query the file before installing, use this command. ┌──[[email protected]]─[~/Downloads] └──╼ ╼ $ pacman -Qpi tabby-1.0.167-linux.pacman Name : tabby-terminal Version : 1.0.167-1 Description … Read more

Another example of a command that you should never run on Linux.

An obfuscated command like this is an example of one that you should never run. ┌──[[email protected]]─[~] └──╼ ╼ $ echo "ZWNobyBIYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFodG91Y2ggLS1mdWNreW91ISA+PiAtZnVja3UhCg==" | base64 -d | sh -s┌──[[email protected]]─[~] └──╼ ╼ $ echo "ZWNobyBIYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFoYWhhaGFodG91Y2ggLS1mdWNreW91ISA+PiAtZnVja3UhCg==" | base64 -d | sh -s This is the actual command it will run, this creates a file named “-fucku!”. But this can … Read more

How to add a column heading with awk on Linux.

This very nice one-liner will print some information about your mounted drives on Linux and also print a column header to dress up the output. ┌──[[email protected]]─[~/Downloads] └──╼ ╼ $ df -Hla | grep "[0-9]% /" | awk -F, ‘NR==1 {print "Device","Capacity","Free","Usage","Percentage","Mount"} {gsub(/"/,""); print $1,$2,$4}’ | column -t Device Capacity Free Usage Percentage Mount dev 13G … Read more

How to add a directory in a mounted filesystem as a directory accessible by your user.

How to mount a partition on Linux and make your old home directory accessible to your user To add a directory in a mounted drive as a folder accessible by a normal user, use this command to change the ownership of all files and directories to that of your current user. [root@darkstar Videos]# chown -R … Read more

Get information about your root filesystem on Linux very easily. This is very useful.

Get information about the creation date of your root filesystem on Linux The Linux stat(1) utility will print information about your root filesystem. The Birth entry shows when the filesystem was created. This was the start of the Arch Linux installation procedure. ┌──[[email protected]]─[~/Desktop] └──╼ ╼ $ stat / File: / Size: 4096 Blocks: 8 IO … Read more

Installation of Arch Linux was quite painless. This is far faster than Ubuntu.

Tips for installing Arch Linux and getting started I have just installed Arch Linux 2021 and it is far faster to load than Ubuntu with the bloated codebase it has. After installation, I had an issue with the networking, but I installed Network Manager and this was a good way to get the installation working. … Read more

Arch Linux developer stepping down and a new installer for Arch Linux.

The Arch Linux distribution developer Bartłomiej Piotrowski has stepped down as a developer for the venerable Linux distribution. This is after 10 years of service maintaining this Linux distribution. But nothing lasts forever and he did very good work maintaining the distro. In other news, the Arch Linux distribution is getting a new installer, this … Read more

Get information about a Linux process very easily and quickly.

To get information about a Linux process, use this simple trick, this is to get the processes associated with the current standard input. I.e a terminal. jason@Yog-Sothoth:~/Documents$ ps -T PID SPID TTY TIME CMD 7467 7467 pts/0 00:00:00 bash 7715 7715 pts/0 00:00:00 top 7826 7826 pts/0 00:00:00 psjason@Yog-Sothoth:~/Documents$ ps -T PID SPID TTY TIME … Read more

New Arch Labs Linux distribution. This really is a good distro, and light on RAM.

Nice new Linux distro for a lower-specced machine The new Archlabs Linux distribution is a nice light Linux distribution that loads very quickly and has a nice default desktop theme. Right-click on the desktop to open the Arch Labs menu. This has not much in the way of software on the live disc, this can … Read more