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 / Manuals Manual: ps
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 / Manuals Manual: crontab
NAME
crontab - maintain crontab files for individual users (ISC Cron V4.1)
SYNOPSIS
crontab [-u user] file crontab [-u user] [-l ...