Windows 2008-R2 – Active Directory – Unable to delete an OU due to lack of privileges

April 6, 2012

Once you create an OU you can delete it by doing the following:

- Start -> Administrative Tools -> Active Directory Users and Computers

- Then select View -> Advanced Features

- Highlight your OU and go to Properties and uncheck “Protect from accidental Deletion”

0

CentOS – Configure a basic NFS – Part 1

April 3, 2012

NFS allows users to access files over the network as if the files are stored locally on the client’s machine. This is a basic how to on how to setup NFS on CentOS.

(more…)

0

ESXi 5 – How to change the network hostname of your ESXi server

April 2, 2012

You can either change the name via the vSphere client or by editing the /etc/hosts file.

1st) Edit file via vSphere.

- Select your ESXi server on the tree of machines on the left side of vSphere.

- Go to configuration Tab and select DNS and Routing.

- Select Properties.

- On the DNS configuration check the “Use the following DNS server address”. Make sure it is pointing to your DNS server.

- Under “Name” enter the name of your choice and whatever domain you wish to enter.

 

2nd) Edit the /etc/hosts file.

- Vi your /etc/hosts file

Here is how my config file looks like

10.0.0.40  VirtualMayhem2.localdomain  VirtualMayhem2

0

CentOS: How to edit your NIC via the command line

April 1, 2012

There are several ways you can edit the settings of your NIC via the command line. All changes take effect right away. You can pass new configuration data directly by the command prompt or by editing the actual file responsible for the active NIC. The first method is temporary because in a case of a reboot the machine may get a new IP from the DHCP server. The second method ensure that the changes are permanent.

(more…)

0

ESXi 5 and how to start SSH – NTP – ESXi Shell – Active Directory Service and so on.

March 31, 2012

In previous versions users had to access directly the ESXi server in order to re-configure configuration files to enable services that VMware did not want to support. However in ESXi5 these services can be enabled/disabled by using the vSphere Client. It is very simple.

(more…)

0

LVM (Logical Volume Manager) – Part 1 – Creating a Logical Volume Drive

March 19, 2012

LVM is a Linux kernel feature which allows for the dynamic allocation of disks and resizing of logical volumes. It is also used for striping and mirroring. Essentially what LVM does is to combine physical volumes (actual hard drives) into logical volumes. So for example we may have  3 different hard drives of different sizes. With LVM we can combine all those hard drives (physical volumes) in such a way that the Operating System will treat them as one hard drive because we have created a logical volume by combining all of them. (more…)

0

Protecting your root account in CentOS6 Part 1 – sudo command

March 18, 2012

The “sudo” command allows to run programs under root privileges or under the privileges of another user. This is done in order to avoid logging in as root each time you want to execute a program that requires elevated privileges. With sudo for example you can assign user “george” to run a specific set of commands. User “george” will need to enter his own password to execute those commands. In other words user “george” is not logging in as root.  The “sudo” command is very useful because you can create groups of users and actual groups that run a specific set of commands and another set of users/groups that run another set of commands. In no point any of these users will access the root account when “sudo” is setup.

(more…)

0

Linux General fixer-uppers

March 17, 2012
General troubleshooting tips for Linux.
(more…)
0

Join a VMware ESXi server to an Active Directory

March 11, 2012

This tutorial will show how to add an ESXi Hypervisor 5.0 server to a Windows 2008-R2  Active Directory by using vSphere Client.

(more…)

0

Windows 2008-R2: Add a computer to a Domain

March 9, 2012

In this tutorial we will add a computer to our newly created domain. There are some configuration changes that need to be made on the machine that we will add on the domain.  This change basically is to point the DNS away from your router and point to your new DNS which is the actual server we are setting up. This will be the only way the machine will know where to look for the Domain…..and lets get started.

(more…)

0