Read only error

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Read only error
# 1  
Old 03-25-2010
Read only error

Hi All,
Could somebody guide me what has to be done when we get the read only file system error.


something like the below

Code:
can't create temporary directory /usr/tmp/cvs-serv28615
Read-only file system



Regards,
Eajaz

Last edited by zaxxon; 03-25-2010 at 08:18 AM.. Reason: use code tags please, ty
# 2  
Old 03-25-2010
Check the mount options for it and /etc/fstab.
# 3  
Old 03-30-2010
Which version of RH are you using???

Take a look at this article from Red Hat Knowledgebase.
# 4  
Old 04-05-2010
hi
/usr/tmp can be separate mount from root filesystem?
and can be this read only mounted?
# 5  
Old 04-06-2010
Hi,

This basically happens when the file system is corrupted, please check the filesystem and the mountpoint ,i mean is the filesystem in question an isolated one from /.

umount and e2fsck would be the solution.How ever to prevent it from happening again ( only the read only mount) u may need to tweak a filesystem

run

tune2fs -e continue /dev/sda(name of the filesystem and not the mount point)

this would change the error behavior of the kernel code when errors are detected. There are three states

1] continue
2]remount-ro
3]panic

In all cases, a filesystem error will cause e2fsck to check the filesystem on the next boot.

to check what state of error behavior you filesystem is run

tune2fs -l filesystem|grep "error-behaviour"
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read: no query process ERROR

Hi, With root user i set this in the .bashrc of user1 on machine 1 more .bashrc ./track.sh # .bashrc # Source global definitions if ; then . /etc/bashrc fi Content of track.sh are more track.sh read -p "Enter ID:" reason while ] # While string is different or empty...... (4 Replies)
Discussion started by: mohtashims
4 Replies

2. Solaris

Unrecovered read error No retry

We encountered these error 2 times(e.g. Solaris 10 with NetWorker installed) with in the month of August, but we couldn't pin point the root cause, it might be bad sector, bad cable or software incompatibility? Do you experience these issue or please share your understanding about this? Thanks... (0 Replies)
Discussion started by: B@S
0 Replies

3. Solaris

How to read Encrypted Error?

Hi Experts, I have an error on my solaris 10. I would like to know how to find the root cause of error because the error like encrypted. Here is the error: Sep 28 21:02:49 eccprod SC:ci-rg:db-srv-rs: Fault monitor detected error INTERNAL_ERROR: 102 DEFAULT Action=NONE : Error in... (2 Replies)
Discussion started by: edydsuranta
2 Replies

4. Solaris

Error 25:Disk Read Error

Hi Guys, Wondering if anyone has seen/has a fix for this, when i try boot my system from CDROM at the solaris/ttya/ttyb selection menu i get stuck in a loop: kernel$ /boot/multiboot kernel/$isadir/unix -B install_media=cdrom,console=ttya loading "/boot/multiboot kernel/$isadir/unix -B... (0 Replies)
Discussion started by: A-Train
0 Replies

5. OS X (Apple)

Read-only file system error

My first post :) I deleted all the files within /system/library/startupitems to the trash bin. Now my mac snow leopard won't boot at all. All I got is the gray screen, apple logo and the spinning wheel...just spinning forever. I was able to boot in single-user mode. I'm trying to copy cp command... (14 Replies)
Discussion started by: haxum
14 Replies

6. Shell Programming and Scripting

Multiple files read error in Shell

Hi All, there is a script that reads multiple files in a directory starting with CTG_TMPxx where xx is an integer number. i have a problem in readin the last file. For example, if there are 10 files in that directory, 9 files are read and processed. but the 10th file, its saying as cannot read... (1 Reply)
Discussion started by: vkca
1 Replies

7. UNIX for Dummies Questions & Answers

Error ^M not found while using read command

Hi guys, i have a script called readnametest.i had written like this # !/bin/ksh echo "enter your name please" read x; echo " your name is $x" i am getting an error like "readnametest.ksh: ^M: not found." while executing this one.Could any one please explain me on why this... (4 Replies)
Discussion started by: raoscb
4 Replies

8. Solaris

Hard error on read, OS error = 32

Hi, I've some background programs who crash with a SIGNINT receive from anywhere and on the same time I've got the message "Hard error on read, OS error = 32" on my terminal. I don't have any experience on the level for troubelshooting. The problem can be come also from the version of oracle... (0 Replies)
Discussion started by: Franzlebord
0 Replies

9. Programming

read/write socket error

I have client and server connected. client write and read from csock. server write and read from ssock suppose the server does : .... close(ssock); //send FIN to client othertask(); .... READ ERROR if after the server close() the client does: ... read(csock,...); ...... (2 Replies)
Discussion started by: gio
2 Replies

10. Programming

Error closing read file

Every time I close a file that I opened for reading I get the following error: ”Memory fault(coredump)”. And, although it does not (I think) affect the overall process (I write another file based on the file I am reading); it is something I would rather not happen. I don't know why this is... (1 Reply)
Discussion started by: ALTRUNVRSOFLN
1 Replies
Login or Register to Ask a Question