First of all extend the hard disk size, either using vmware console, san console or vmdisk-vmanager command.
In my example i extend sda from 10 to 12 GB.
In my current linux:
/dev/sda1,2,3 --> primary partition
/dev/sda4 --> extended partition
/dev/sda5 --> inside sda4, it is also the /home partition
After extend, see the result using fdisk -l,
Notice if the HD size now is 12 GB.
However the partition sector/unit is still remain the same as before.
Since the last sector is /dev/sda4, so now we extend it sda4 first, then we could extend the sda5.
using parted :
# select /dev/sda
# unit mb
# print
# resize 4 xxxxx yyyyy
xxxx is the beginning of the sector
yyyy is the end of sector
Notice that now the /dev/sda4 has some more spaces.
after that we need to resize the /dev/sda5
Follow this link to extend the size:
http://www.hermann-uwe.de/blog/resizing-ext3-partitions-with-parted
>>>>>>>>>>>
unfortunately resize ext3 can be failed with error like "file system has an incompatibility feature" which is caused by the ext3 has been customized by redhat.
The quick way is just by using fdisk, remove the sda5 partition, and create again using the total sector of /dev/sda4.
Now u have /dev/sda5 extended size.
The longest way is by modifying all the custom attribute redhat:
http://gtechnotes.blogspot.com/2005/10/parted-gives-error-filesystem-has.html
>>>>>>>>>>>>>>
Wednesday, 28 December 2011
Wednesday, 7 December 2011
fedora 14 and intel graphic card : x11 won't start
Fatal server error
caught exception
Check your video driver:
lsmod | grep video
==> i915
Incase wanna see the card:
lspci
change the driver:
/etc/X11/xorg.conf
OR
system-config-display
(the GUI will work eventhough your X still not on)
>>>>>>>
choose VESA driver and if appear depth error message, just change the color depth to lower value.
>>>>>>>>
when u choose wrong driver, like NV (nvidia), it will give u error device not found, cause the card is not there.
caught exception
Check your video driver:
lsmod | grep video
==> i915
Incase wanna see the card:
lspci
change the driver:
/etc/X11/xorg.conf
OR
system-config-display
(the GUI will work eventhough your X still not on)
>>>>>>>
choose VESA driver and if appear depth error message, just change the color depth to lower value.
>>>>>>>>
when u choose wrong driver, like NV (nvidia), it will give u error device not found, cause the card is not there.
Wednesday, 14 September 2011
multipath on linux - how the disk look like
modprobe -l | grep the "driver desc"
if not there, install it...
ex. go to brocade, download, install with some options like --update-initrd
after this the /sys/class/fc_host folder is there
after you scanning with
echo "1" > ............./issue_lip
echo "- - -" > ................../scan
the device will appear in proc/scsi/scsi file.
when you part it, you need to restart it:
ex. dm-2 will have dm-2p1 as partition 1, but you can not format it untill you reboot it, it will add another disk called dm-3 whcih is same with dm-2p1.
if not there, install it...
ex. go to brocade, download, install with some options like --update-initrd
after this the /sys/class/fc_host folder is there
after you scanning with
echo "1" > ............./issue_lip
echo "- - -" > ................../scan
the device will appear in proc/scsi/scsi file.
when you part it, you need to restart it:
ex. dm-2 will have dm-2p1 as partition 1, but you can not format it untill you reboot it, it will add another disk called dm-3 whcih is same with dm-2p1.
RHEL 4 does not have yum
You can either install it manually with some deps packages, or just use GUI :
system-config-application --isodir=/isoFolder
useful also when u have no CDRom
system-config-application --isodir=/isoFolder
useful also when u have no CDRom
Friday, 24 June 2011
syslog in linux/redhat
File is in /etc/syslog.conf
by default:
*.info;mail.none;authrpiv.none;cron.none /var/log/messages
meaning logging all subject at info (and above) level but the mail and cron not.
to the messages file
To make it particular:
kern.=info (only kernel with level info)
Numerical Code Severity Reference
-------------- ------------------------------------------- ---------
0 Emergency: system is unusable [RFC3164]
1 Alert: action must be taken immediately [RFC3164]
2 Critical: critical conditions [RFC3164]
3 Error: error conditions [RFC3164]
4 Warning: warning conditions [RFC3164]
5 Notice: normal but significant condition [RFC3164]
6 Informational: informational messages [RFC3164]
7 Debug: debug-level messages [RFC3164]
7 is the most detail severity level.
by default:
*.info;mail.none;authrpiv.none;cron.none /var/log/messages
meaning logging all subject at info (and above) level but the mail and cron not.
to the messages file
To make it particular:
kern.=info (only kernel with level info)
Numerical Code Severity Reference
-------------- ------------------------------------------- ---------
0 Emergency: system is unusable [RFC3164]
1 Alert: action must be taken immediately [RFC3164]
2 Critical: critical conditions [RFC3164]
3 Error: error conditions [RFC3164]
4 Warning: warning conditions [RFC3164]
5 Notice: normal but significant condition [RFC3164]
6 Informational: informational messages [RFC3164]
7 Debug: debug-level messages [RFC3164]
7 is the most detail severity level.
Tuesday, 21 June 2011
Explanation free Command in Linux
total Used free shared buffers cached
Mem: 49415736 49139132 276604 0 5656 47368280
-/+ buffers/cache: 1765196 7650540
Swap: 5237180 20 5237160
Mem total : Mem used + free
Mem used : 49GB (ps + buffers 5656 + cache 47GB)
- buffer/cache : Mem used - (buffers 5656 + cache 47GB)
+ buffer/cache : Mem free + (buffers 5656 + cache 47GB)
Swap (paging/Hard disk) used is 20KB only.
Buffers and cache are considered low priority, they r using large mem when none uses it. when apps using it, they will be decreased.
Buffers is for remembering the FS like dir structure (ls -R . will boost the buffr)
cache is storing the file content, so processes can access file in cache instead read it over and over from the disk.
Mem: 49415736 49139132 276604 0 5656 47368280
-/+ buffers/cache: 1765196 7650540
Swap: 5237180 20 5237160
Mem total : Mem used + free
Mem used : 49GB (ps + buffers 5656 + cache 47GB)
- buffer/cache : Mem used - (buffers 5656 + cache 47GB)
+ buffer/cache : Mem free + (buffers 5656 + cache 47GB)
Swap (paging/Hard disk) used is 20KB only.
Buffers and cache are considered low priority, they r using large mem when none uses it. when apps using it, they will be decreased.
Buffers is for remembering the FS like dir structure (ls -R . will boost the buffr)
cache is storing the file content, so processes can access file in cache instead read it over and over from the disk.
Wednesday, 18 May 2011
SCSI harddisk on linux
Manually:
cat /proc/scsi/scsi
ls /sys/class/scsi_host/.....
==> contain the host:bus:ID:Lun and Port name
By command:
lsscsi (many flag options)
fdisk -l
sginfo
Note : /dev/sdX mapped from /dev/sgX
When a HBA attach to SAN which contain 4 logical disks:
/dev/sdb,c,d,e (the partner is /dev/sdf,g,h,i)
How to see the partner :
e2label /dev/sdb XXX ==> to lable the HD
e2label /dev/sdf --> to see if it has same lable or not
Will be like this :
H:B:I:L == 5.0.0.1,2,3 (for sdb,c,d,e) and 5.0.1.1,2,3,4 (for the partner)
H is host, same as comes from one HBA. (diffrent from CDROM and LOCAL HD as it connects from different card)
B is BUS : dunno what
I is ID : same for LUNS (show same S/N of harddisk)
L is LUN : different for each partition/logical disks
additional commands:
hdparm
sdparm
scsi_id
parted /dev/sdX print ==> to see File System of a harddisk
rescan_scsi_bus.sh
cat /proc/scsi/scsi
ls /sys/class/scsi_host/.....
==> contain the host:bus:ID:Lun and Port name
By command:
lsscsi (many flag options)
fdisk -l
sginfo
Note : /dev/sdX mapped from /dev/sgX
When a HBA attach to SAN which contain 4 logical disks:
/dev/sdb,c,d,e (the partner is /dev/sdf,g,h,i)
How to see the partner :
e2label /dev/sdb XXX ==> to lable the HD
e2label /dev/sdf --> to see if it has same lable or not
Will be like this :
H:B:I:L == 5.0.0.1,2,3 (for sdb,c,d,e) and 5.0.1.1,2,3,4 (for the partner)
H is host, same as comes from one HBA. (diffrent from CDROM and LOCAL HD as it connects from different card)
B is BUS : dunno what
I is ID : same for LUNS (show same S/N of harddisk)
L is LUN : different for each partition/logical disks
additional commands:
hdparm
sdparm
scsi_id
parted /dev/sdX print ==> to see File System of a harddisk
rescan_scsi_bus.sh
Subscribe to:
Posts (Atom)