VIKHOST Tech Blog
Useful Technical Articles, Notes and Instructions.
How to Change the RDP Port in Windows
Change the Default Remote Desktop (RDP) Port 3389 in Windows
RDP (Remote Desktop Protocol), or Remote Desktop Protocol, is an application layer protocol used to provide remote access to Windows servers and workstations. By default, RDP connection uses TCP port 3389, but sometimes it may be necessary to change rdp port, the most often used when you need to hide your RDP / RDS host from automatic port …
RDP (Remote Desktop Protocol), or Remote Desktop Protocol, is an application layer protocol used to provide remote access to Windows servers and workstations. By default, RDP connection uses TCP port 3389, but sometimes it may be necessary to change rdp port, the most often used when you need to hide your RDP / RDS host from automatic port …
How to Shutdown or Reboot Debian 10
How to Shutdown or Reboot Debian 10 (Buster) — You need to know that traditional commands for halting and rebooting will not be used any more for Debian 10. Now this system is fully switched to Systemd. At first for work with a system you need to use a root user for commands. Below you could find systemd equivalents which need to be used on Debian 10: For shutdowning Debian …
How to add additional IP address Linux
How to add additional IP address Linux — At first, you need to back up, if anything will be done wrong. Below you could find command: cp /etc/network/interfaces /etc/network/interfaces.backup Also please make sure that you are one of the root account on your server.
For adding IP address to server’s network interface you need to edit files /root/etc/network/interfaces After coping, you could view and edit file using nano: nano /etc/network/interfaces
…
For adding IP address to server’s network interface you need to edit files /root/etc/network/interfaces After coping, you could view and edit file using nano: nano /etc/network/interfaces
…
Linux. List of services in auto loading
Linux. List of services in auto loading — The easiest and most intuitive way to display a list of services / programs that are at startup, with the ability to edit them, is to use the sysv-rc-conf console utility. We use next: sudo apt-get install sysv-rc-conf Run: sudo sysv-rc-conf And we see next: Now, with the help of a space, we can enable or disable the autoload of the service, …
How to check the Debian version
How to check the Debian version
Command cat /etc/issue
The easiest way to check the Debian version is to look at the contents of the /etc/issue file with the cat command root@debian-host:~# cat /etc/issue
Debian GNU/Linux 8 \n \l
Command cat /etc/debian_version
However, this file contains only information about the version of the distribution, in order to check the version and release number of Debian, you need to use another …
Command cat /etc/issue
The easiest way to check the Debian version is to look at the contents of the /etc/issue file with the cat command root@debian-host:~# cat /etc/issue
Debian GNU/Linux 8 \n \l
Command cat /etc/debian_version
However, this file contains only information about the version of the distribution, in order to check the version and release number of Debian, you need to use another …