DISK: /dev/hdp query!


 
Thread Tools Search this Thread
Operating Systems AIX DISK: /dev/hdp query!
# 1  
Old 03-14-2008
DISK: /dev/hdp query!

Hi looking for a little advice..What are the implication of DISK: /dev/hdp filling to 100% . Have no experiece with Unix so looking for a little guidance. I'm a windows admin and have inherited two IAX servers. Both of which are monitored via MOM. One has started reporting the below error.

DISK: /dev/hdp: space used %: value = 90.5
# 2  
Old 03-14-2008
Unlike windoze, which has different "drives" (a:, b:, etc.) UNIX - AIX is no exception - has a strictly hierarchical file system. Different disks ("partitions" in your wording) are "mounted" into one hierarchy and the user doesn't have to care which disk he is accessing. Changing from one directory to another could mean changing from one disk to another. In Windoze you would "net use" a "share" and end up using it as a new drive letter. In UNIX the analogous process would be to create a directory somewhere, "mount" the drive and then see its contents below this subdirectory.

OK, after this "cultural indoctrination" to your problem at hand: one of these "disks" is filling up and currently at 90.5% full. Issue a "df -k" to see which file systems are mounted and how much they are filled. The figures, unless otherwise stated, are in KBs.

Some filesystems contain rather static data (/usr for instance) and it doesn't matter if they are nearly full. Others hold widely varying amounts of temporary data and they have to have lots of free space for the system to work fine. If you have questions about to which group a specific filesystem belongs just ask.

AIX features a "logical volume manager", which is a bit too complex to explain for that problem. Suffice it to say that you can - even without unmounting - dynamically resize your mounted disks. Here is how:

Find out which filesystem the logical volume /dev/hdp belongs to:

Code:
df -k

With this knowledge follow the procedure here

If things are still unclear don't be shy to ask.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Dev/urandom and dev/random missing in HP-UX

Hi, In our HP-UX B.11.11. I could not find dev/urandom and dev/random Are all pseudo-devices implemented as device drivers, or in need to run /configure some package to install the package to have dev/urandom. Please help (4 Replies)
Discussion started by: rashi
4 Replies

2. Red Hat

Changing grub from /dev/sda to /dev/sdb

Hi, Please suggest steps to change grub from /dev/sda to /dev/sdb, (1 Reply)
Discussion started by: manoj.solaris
1 Replies

3. UNIX for Advanced & Expert Users

Disk /dev/sdb doesn't contain a valid partition table

Hello, I have rebooted the RHEL VM but after rebooting the vm it not showing all the partition mounted on OS level, if i'll execute the fdisk -l command, then i'm able to see the same disk. below is the fdisk output : # fdisk -l Disk /dev/sda: 107.6 GB, 107639996416 bytes 255 heads, 63... (1 Reply)
Discussion started by: purushottamaher
1 Replies

4. Shell Programming and Scripting

Automating partitioning setup of /dev/sda on /dev/sdc

Objective: To recreate the partitioning setup of /dev/sda on /dev/sdc How would I parse the below information and initialize variables (an array?) that can be used to build sgdisk commands in a script, regardless of the number of partitions? Something along the lines of: sgdisk -n... (12 Replies)
Discussion started by: RogerBaran
12 Replies

5. AIX

Problem in /dev/hd1 and /dev/hd9var

Hello AIXians, I can't boot my AIX, it hangs and stops at the code error: 0518 After searching google, I knew the problem is due to problems in File Systems. So the solution is booting from any bootable media, then run these commands in maintenance mode: #fsck -y /dev/hd4 #fsck -y... (3 Replies)
Discussion started by: Mohannad
3 Replies

6. AIX

Difference between /dev/hdisk and /dev/rhdisk

Hi, How can i check that i am using RAW devices for storage in my AIX machine... Also after adding a LUN from storage to a aix host, when i check /dev in the host, i can see both rhdisk and hdisk with same number eg: dcback1(root):/dev>ls -lrt | grep disk12 crw------- 1 root ... (4 Replies)
Discussion started by: jibujacob
4 Replies

7. Solaris

Lun remove, stuck in /dev/dsk and /dev/rdsk

So, we removed a LUN from the SAN and the system is refusing to remove the references to it in the /dev folder. I've done the following: devfsadm -Cv powermt -q luxadm -e offline <drive path> luxadm probe All those commands failed to remove the path. The drive stills shows up as <drive... (13 Replies)
Discussion started by: DustinT
13 Replies

8. Shell Programming and Scripting

sudo dd if=/dev/sdb1 of="disk-image"

sudo dd if=/dev/sdb1 of="disk-image" can anyone explain roughly to me is it this code do some recovery from /dev/sdb then output it to "disk-image" ? But then how can i access the "disk-image"? it cannot be read , and it told me its a binary file... (2 Replies)
Discussion started by: obanajunichiro
2 Replies

9. Solaris

A query on Disk naming conventions in Solaris.

These are findings by me with my little experience with Solaris 10. Please correct me if wrong.. In x86 systems with ide hard disk: c= controller d=disk s=slice 1.Here controller c0 means the primary ide controller ide0. controller c1 means the secondary ide controller ide1. ... (5 Replies)
Discussion started by: saagar
5 Replies

10. Solaris

What is /dev/tty /dev/null and /dev/console

Hi, Anyone can help My solaris 8 system has the following /dev/null , /dev/tty and /dev/console All permission are lrwxrwxrwx Can this be change to a non-world write ?? any impact ?? (12 Replies)
Discussion started by: civic2005
12 Replies
Login or Register to Ask a Question