EZ Linux Admin random header image

Entries from May 2012

How do I restart Linux network service?

May 14th, 2012 by EZ linux · No Comments

RedHat Linux command to reload or restart network (login as root user): # service network restart OR # /etc/init.d/network restart To start Linux network service: # service network start To stop Linux network service: # service network stop Debian Linux command to reload or restart network: # /etc/init.d/networking restart To start Linux network service: # [...]

Click to continue →

Tags: Cheat Sheets · Linux Software / Scripts · Linux Tricks

VI basic basics

May 14th, 2012 by EZ linux · No Comments

Starting: vi filename          edit filename starting at line 1 vi -r filename     recover filename that was being edited when system crashed Exiting: :x<Return>     quit vi, writing out modified file to file named in original invocation :wq<Return>     quit vi, writing out modified file to file named in original invocation :q<Return>    [...]

Click to continue →

Tags: Cheat Sheets · Linux Commands · Linux Software / Scripts

How to install CPanel over Centos 6 minimal

May 13th, 2012 by EZ linux · No Comments

To install CPanel over Centos minimal 6 you need to get some basic packages. You can easily grab those with YUM here is the package command to get Centos Minimal install ready for CPanel. yum groupinstall base

Click to continue →

Tags: Cpanel and WHM · Installing Linux · Linux Commands · Linux Operating Systems · Linux Software / Scripts · Linux Tricks

How to Tell What Type of Memory Your Linux PC Has Installed

May 6th, 2012 by EZ linux · No Comments

Here it is, the magic code. Just run this as root and it will give you the ddr, mhz, and much more. sudo dmidecode –type memory

Click to continue →

Tags: Cheat Sheets · Cpanel and WHM · Hardware · Linux Tricks