Set your proxmox node to respond at wake-on-lan messages
Install ethtool Install ethtool go to your node shell
apt install ethtool Get your interface name ip addr Check if wake-on-lan is already activ You need to find how your interface is named. You cal look for it under System > Network In our case our interface is named enp6s0 Look at the current configuration:
ethtool enp6s0 If you find this row:...
When using Proxmox as your favorite virtualization platform, you will come across the need to connect to your VMs. In case of a Windows VM, the classic way to do it may be to activate RDP from within your Windows VM and connect through it. But a more open source solution can be to configure the Spice protocol to access to your development machines.
Spice Protocol To keep it super simple and basic, it’s composed of four elements:...
Server Administration We will assume you have an fresh new instance of Ubuntu hosted somewhere, or you a new create VM on your local computer for development purposes
Let’s create a new user For security reasons, we will create a new user “weby” with the following command
adduser weby and set a password:
passwd weby Add the new user to the wheel group
gpasswd -a weby wheel
Time has come for a quick Nas setup. I just write this guide for later reference.
1. System Installation Downloading the original iso file from the main project webpage. Once we downloaded the system image, create an usb stick and booy your system from it. The install procedure will start.
2. Installing Extra Plugins After the installation, I like to install the extra plugins. For that we need to ssh inside our box and execute the folowing comands:...
Setup an Ubutu Server For Deployment We will asume that you have a fresh istance of Ubuntu Server at hand.
First step we will create a new user to our Ubuntu Server. In our case we name our user sir
adduser sir Here the console will ask to enter a password for your new user. Choose a strong password that you can easily remenber.
Now we need to give to the new user the ability to run program with the sudo command....