Create volume group in AIX

Create a volume group that contains 3 physical volumes with partition size set to 64 megabyte

# mkvg -s 64 hdisk2 hdisk3 hdisk4

Create volume group using all unused “None status” disks

# mkvg -S -y datavg -s ’64’ -n `lspv|grep None| awk ‘{print $1}’| xargs`

reference:
https://www-01.ibm.com/support/knowledgecenter/ssw_aix_71/com.ibm.aix.cmds3/mkvg.htm
http://unix.worldiswelcome.com/how-to-create-volume-group

Create volume group in Linux

1. If creating the volume group from scratch, verify which disk to use to create the volume group. (note: Assuming that disk has already been added)

# fdisk -l

Disk /dev/sdb doesn’t contain a valid partition table.

2. Create the partition inside the added disk and verify.

# cfdisk /dev/sdb
# fdisk -l

3. Create the physical volume with pvcreate and verify using pvdisplay

# pvcreate /dev/sdb1
# pvdisplay /dev/sdb1

4. Create the volume group using vgcreate and verify with vgdisplay.

# vgcreate new_vg /dev/sdb1
# vgdisplay

If adding disk with more than one partition

# vgcreate new_vg /dev/sdb1 /dev/sdb2
# vgdisplay

Shutdown (Linux,AIX,Solaris)

Linux

Shutdown putting server to halt
# /sbin/shutdown -h now

Shutdown with reboot

# /sbin/shutdown -r now
OR
# reboot

You may also use
# halt
# poweroff

Using init command e.g. init 6
0 — Halt
1 — Single-user text mode
2 — Not used (user-definable)
3 — Full multi-user text mode
4 — Not used (user-definable)
5 — Full multi-user graphical mode (with an X-based login screen)
6 — Reboot

AIX

Shutdown and power off bypassing messages to users (No grace period)

# shutdown -F

Shutdown and reboot

# shutdown -Fr

To enter single user user mode, use -m flag

# shutdown -m
OR
# shutdown -m now

Solaris

Shutdown immediately

# shutdown -y -i5 -g0
OR
# sync;sync;init 5
OR
# poweroff

Reboot

# shutdown -y -i6 -g0
OR
# sync;sync;init 6
OR
# reboot

Mkitab

To add a new record to the /etc/inittab file, telling the init command to handle a login on tty2, enter:

# mkitab “tty002:2:respawn:/usr/sbin/getty /dev/tty2”

To add a new record to the /etc/inittab file, telling the init command to execute the /etc/rc.tcpip file after the /usr/sbin/srcmstr file is started, enter:

# mkitab -i srcmstr “rctcpip:2:wait:/etc/rc.tcpip > /dev/console”

To add a new record to the /etc/inittab file, telling the init command to execute the /etc/rc file and send its output to the boot log, enter:

# mkitab ((rc:2:wait:/etc/rc 2>&1 | alog -tboot > /dev/console))