- /dev/loop1 100% /snap/snapd/20290
- system mounts /dev/loop0 on /snap/core/3604 and it’s 100
- Remove dev/loop
Purse the snapd
apt autoremove --purge snapd
by dev
Purse the snapd
apt autoremove --purge snapd
by dev
Login to your server root
Them run
sudo crontab -e
Select an editor.
Set the job
# m h dom mon dow command
0 4 * * * /sbin/shutdown -r +5
m=minute
h=hour
dom=day of month
mon=month
dow=day of week
by dev
This can be done using the cloud-utils package:
For Debian and Ubuntu
apt install cloud-utils -y
For CentOS
yum install cloud-utils -y
Now the cloud-utils are installed, we need to know the name of the existing partition. use the following command to search for a partition mounted to “/”:
mount | grep ' / '
Example output:
/dev/sda3 on / type ext4 (rw,noatime,data=ordered)
Remember the first part (“/dev/sda3” in the example above). To expand the partition, use the following commands:
growpart /dev/sda 3
resize2fs /dev/sda3
And that’s all it takes to expand your existing partition on Debian and Ubuntu and CentOS.
by dev
With Backblaze B2 Cloud Storage, you can store and manage your data with ease. Your first 10GB of storage is free, so let’s get started.
How are you planning to use B2 Cloud Storage?
You can directly upload data. You can also use a partner integration to move or copy your data into B2 Cloud Storage. Choose the use case that best describes your needs.
Step One
Create a Backblaze B2 Cloud Storage account. You can sign up here.
Step Two
Enable Backblaze B2
Step Three
Create a Bucket
Step Four
Create an Application Key
Application keys control access to your Backblaze B2 Cloud Storage account and the buckets that are contained in your account.
Note
The applicationKey appears only once. Make sure you copy and securely save this value elsewhere.
by dev
Step 1
Login as root user to SSH of freshly installed Ubuntu 20.04
Step 2
Disable firewall, while installing cpanel & whm on linux ubuntu system
iptables-save > ~/firewall.rules systemctl stop firewalld.service systemctl disable firewalld.service
Step 3
Update Ubuntu System Packages
apt update apt upgrade
Step 5
Set your hostname for example my.hostname.com
set hostname my.hostname.com
edit hostname vi /etc/hosts vi /etc/hostname
Reboot the server.
Step 6
Create a shell session of Linux Screen utility. It helps to remain active even after the network disruption.
screen
If the screen is not installed, install it.
apt install screen
Step 7 – Install Cpanel/WHM
cd /home && curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest
Step 5 – Login to WHM Web interface
https://SERVER_IP:2087
Use your root login credentials.
That’s All!