Enable VNC Server on Linux

Download realvnc server application from here Open a terminal CD to your downloads folder To install the package issue Next we need to enable the server so that it will stay up even when we reboot the system. That’s it, you can open a VNC Viewer and try connecting to your system. VNC username and […]

Samba file share in linux

Firstly, use apt to install samba in our linux system Samba hosts all it’s configuration under the directory /etc/samba/In this tutorial we will be making a fresh configuration file, before we do so we’ll take a backup of the default configuration. Now we can go ahead and build our configuration file. Here I will be […]

Permanently Add Static Route in Linux (RHEL or CentOS)

Move to the below directory with CD Create a new file called route-eth# with nano or your preferred text editor (Replace # with your network interface number) And copy paste the below configuration and edit it to suit your needs. ADDRESS0=192.168.2.0NETMASK0=255.255.255.0GATEWAY0=192.168.10.1ADDRESS1=192.168.103.0NETMASK1=255.255.255.0GATEWAY1=192.168.10.1ADDRESS2=192.168.101.0NETMASK2=255.255.255.0GATEWAY2=192.168.10.1 If you’re using nano then Ctrl+O to write out and Ctrl+X to exit, and […]

Install Plymouth theme on Pop!_OS 20.04

For this tutorial I will be using this debain theme https://www.gnome-look.org/p/1368573/ To begin with, download the .zip file and extract its contents to usr/share/plymouth/themes Now issue these commands on terminal. sudo update-alternatives –install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/debian/debian.plymouth 100 sudo update-alternatives –config default.plymouth Now type in the selection number that corresponds to the theme you downloaded. Here […]