License Verification | WHMCS
https://www.whmcs.com/members/verifydomain.php
Softaculous License Verification
https://www.softaculous.com/softaculous/verify
DirectAdmin License
https://license.directadmin.com
by dev
License Verification | WHMCS
https://www.whmcs.com/members/verifydomain.php
Softaculous License Verification
https://www.softaculous.com/softaculous/verify
DirectAdmin License
https://license.directadmin.com
by dev
Prerequisites
Warning
All data will be erased on the partition.
Procedure
Suppose we are re-partitioning /dev/vdb1
vi /etc/fstab
umount /dev/vdb1
fdisk /dev/vdb1
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them. Be careful before using the write command.
Command (m for help):
by dev
yum install e2fsprogs
yum install perl-Crypt-SSLeay perl-Net-SSLeay
Then try updating CSF.
csf -u
by dev
ls command for files
du command for directories
Checking File Size
ls -l filename #Displays Size of the specified file
ls -l * #Displays Size of All the files in the current directory
ls -al * #Displays Size of All the files including hidden files in the current directory
ls -al dir/ #Displays Size of All the files including hidden files in the ‘dir’ directory
Checking Directory size
du -sh directory_name #Gives you the summarized(-s) size of the directory in human readable(-h) format
du -bsh * #Gives you the apparent(-b) summarized(-s) size of all the files and directories in the current directory in human readable(-h) format
For more information see man ls and man du
by dev
Following script will show current year.
<script>document.write(new Date().getFullYear());</script>