Software / Linux / Command Line How do I copy the partition table from disk to disk?
When using GPT you can use sgdisk to copy the partition table.
FROM="/dev/sdX"
TO="/dev/sdY"
sgdisk $FROM -R $TO
sgdisk -G $TO
This will copy the ...
Software / Linux / Manuals Manual: vi
PROLOG
This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the ...
Software / Linux / Command Line How do I graphing mysql statistics in Cacti?
Graphing mysql statistics in Cacti
The HOWTO below will guide you through creating statistics graphs for MySQL usage in Cacti.
We have ...
Software / Linux / Command Line How do I setup VNC for a user on Centos 7?
To setup your server to run a full desktop VNC session first we need to install the required packages.
yum groupinstall ...
Software / Linux / Command Line How do I rename a KVM VM?
This example works on Debian 13, but will likely work on other distributions too (CentOS 7).
Save a copy of the ...