rmt0 allows get increased .. !


 
Thread Tools Search this Thread
Operating Systems AIX rmt0 allows get increased .. !
# 1  
Old 05-09-2010
rmt0 allows get increased .. !


rmt0 allows get increased .. !

I have faced this issue in my AIX server, rmt0 allows get increased and it's filled /root till 100%
There is no tape in tape drive why it's increased?

Pls advice..


# 2  
Old 05-10-2010
To be honest, i have a hard time acquiring any meaning from your post. Would you please be so kind to phrase your posts more diligently? Thank you!

Might it be, that you have (by some ill means) created a regular file in the "/dev" directory, in the place where a special file "/dev/rmt0" should be? Check the type of the file with "ls":

Code:
# ls -l /dev/rmt*         
-rw-r-----   1 root     system        10240 Apr 11 2008  /dev/rmt0
brw-rw-rw-   1 root     system       38,  6 Jun  2 2005  /dev/rmt1

Your entry should look like the second line. The "b" in the first column of the directory entry means that "/dev/rmt0" is a special file (a block-device, to be precise). If your entry looks like the first line, do the following:

Check with "lscfg | grep rmt" to make sure there is indeed a physical tape-device attached to the LPAR. If there is, remove the device, remove the file completely, run "cfgmgr" to (re-)create the necessary device entries. Check with "lscfg | grep rmt".

Code:
root # lscfg | grep rmt
+ rmt0             U1.9-P1-I3/E4                                    Other tape drive
root # rmdev -dl rmt0
root # rm -f /dev/rmt0*
root # cfgmgr


I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How can I get the increased rate in MB?

Deal all, I have a directory called I want to know how many MBs are transferred to it every 2 hours. How can I do this? Any ideas? I have a simple idea but I can't translate it into shell script, the idea is: 1- get the size of the folder now, using 2- then get the size of the... (4 Replies)
Discussion started by: Mohannad
4 Replies

2. Solaris

/ root is 100% and there is nothing increased it

Guys I have solaris 9 and / root is 100% and there is nothing increased the space every thing normal , I think the problem related to audit How can I stop or shutdown audit service and start it again ? Pls advice in the reason of this increasing and is it related to audit service ? . (5 Replies)
Discussion started by: Mr.AIX
5 Replies

3. AIX

/dev/rmt0 pointed to from an NFS of another server ?

I only about the principle of filesystems from the very basics on Linux and Windows. But I want to know if it is possible on an AIX 4.2 to create one NFS on a server which is pointing to a tape drive (/dev/rmt0) of another server ? This is because we several backups to do on a 5 servers that... (5 Replies)
Discussion started by: Browser_ice
5 Replies

4. AIX

aix 4.2 : using dd of=/dev/rmt0 producing error

I want to compress backup files to tape using compress on our AIX 4.2 - Our TAR does not have compression. - I do not want to use local storage to compress as most of the filesystems are pretty full. - the only compressing tool we have is 'compress' - tapes are 5Gb 8mm I am trying this... (10 Replies)
Discussion started by: Browser_ice
10 Replies

5. AIX

Piping to /dev/rmt0 tape ?

I am trying to find a way to do the following on an AIX 4.2 with Korn: tar cvfpdl - . | compress > /dev/rmt0 The /dev/rmt0 is the device we use when we tar directly to it. I want to compress a folder's content to tape. Our current TAR does not have compression at all. We only have... (5 Replies)
Discussion started by: Browser_ice
5 Replies

6. AIX

mt -f /dev/rmt0.1 status

Hello all, Anyboby knows what is the reason by which the ouput of the command mt -f /dev/rmt0.1 status on AIX does not show the same information that in the rest of platforms UNIX (Solaris, HP-UX, ...)? Then, what command of AIX is similar to mt- f /dev/rmt0.1 status of Solaris? We need it to... (0 Replies)
Discussion started by: smoraprosol
0 Replies
Login or Register to Ask a Question