Sponsored Content
Operating Systems AIX /dev/hd9var/ /var what should i do. Post 302136994 by zaxxon on Friday 21st of September 2007 01:26:44 AM
Old 09-21-2007
Just do a "smitty fs", change fs, "enhanced..." for jfs2 or "journaled..." for jfs1, select "change" again, pick it from the list and add some units and go.
Yes, lsvg shows you in the "FREE PPs", how much space is left for increase on existing or for creation of new LV/FSes.
"man lsvg" will tell you that too ^^

Did you try the fsck or reboot or something to get a correct status of /var?
 

10 More Discussions You Might Find Interesting

1. 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

2. AIX

/dev/hd9var full

/dev/hd9var 819200 1928 100% 12101 12% /var the filesystem is full my self being new to aix what do i do to create space (1 Reply)
Discussion started by: freeman
1 Replies

3. AIX

hd9var full

i have deleted qf's and df's in my /var/spool/mqueue and my /var still remains at 99% full. when i check users i get this: # fuser -xuc /var /var: 8072c(root) 18404(root) 19420c(root) 23558c(root) 24276(root) 24770(root) 25284c(svcagent) 27102c(svcagent) 30242c(root) ... (3 Replies)
Discussion started by: freeman
3 Replies

4. 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

5. 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

6. 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

7. Shell Programming and Scripting

Csh , how to set var value into new var, in short string concatenation

i try to find way to make string concatenation in csh ( sorry this is what i have ) so i found out i can't do : set string_buff = "" foreach line("`cat $source_dir/$f`") $string_buff = string_buff $line end how can i do string concatenation? (1 Reply)
Discussion started by: umen
1 Replies

8. 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

9. 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

10. 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
mc(7)							 Miscellaneous Information Manual						     mc(7)

NAME
mc - SCSI medium changer interface DESCRIPTION
The medium changer (mc) interface provides a means for applications to control the robotic medium changers found in tape and optical libraries or jukeboxes. The mc driver may be used for any supported Small Computer System Interface (SCSI) medium changer devices, and potentially for other SCSI- compliant changer devices. Applications use Unix I/O calls (open, close, ioctl) to access changer devices, by means of device special files. Changer device special files are typically created in the /dev/changer directory by the dsfmgr utility on system startup. Refer to the dsfmgr(8) Reference Page and the System Administration Guide if you need to recreate device special files that are deleted acciden- tally. The rz(7) and tz(7) Reference Pages provide information on how device names map to SCSI CAM lun addresses. The format of a a medium changer device special file name is: /dev/changer/mcN where N is an integer representing the instance of the device that is assigned by dsfmgr at system startup. The driver supports a number of ioctl commands that move media in the library or return information about the media. See the header file /usr/sys/include/io/cam/mchanger.h for the ioctl commands and their associated structs. An application opens the device special file corresponding to the changer device, executes appropriate ioctl commands, then closes the device special file. Typically, changer devices are not shared between applications, but this is not due to any limitation on the changer or mc driver, but rather to the possibility of confusing which media belong to which application. An application on a non-cluster system can assure that only it can use a changer by opening that changer's device special file for exclusive access, by including the O_EXCL flag in the open call, and leaving the file open until the application is completely done using the changer. However, if the changer is on a shared bus in a cluster, it is possible for an application on each cluster member to open the device, even if each specifies O_EXCL, because that only grants exclusive access on the local host. In this case it may be useful for the application to use a SCSI device reser- vation to assure exclusive access. (An ioctl command is provided to facilitate reserving a changer.) Refer to the Software Product Description for a list of supported devices under the heading of SCSI CAM Layered Components. Facilities are provided in the operating system to allow the addition of some third-party SCSI-compliant medium changers. Under Digital Unix v4.0 and later, refer to the ddr_config(8) and ddr.dbase(4) reference pages for instructions. Under Digital Unix v3.x, new devices can be added to /sys/data/cam_data.c. See that file for instructions. FILES
changer device special file header file for changer ioctl commands RELATED INFORMATION
Commands: mcutil(1), mcicap(4), dsfmgr(8), scu(8), uerf(8) Interfaces: op(7), tz(7), SCSI(7) delim off mc(7)
All times are GMT -4. The time now is 07:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy