Mount /etc/fstab


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Mount /etc/fstab
# 1  
Old 12-18-2013
Mount /etc/fstab

Can you please help me mount below filesystem in fstab ( I have rhel 5 )

as the line is long - it is not taking as single line

How can break this in 2 line and act as one ....please help


Code:
10.1.25.199:/N905800_T_CNP_TPT_N_Prod_V0001/qtree01_CNP_Tibco_TPT_N_Prod_V0001	/ttk/tibco/tibco_cfg/serv/cfgttp/ems/data-Service 	hard,intr,nosuid        0 0


Last edited by Scott; 12-18-2013 at 11:22 AM.. Reason: Code tags
# 2  
Old 12-18-2013
It doesn't matter how long the line is. If it wraps in your editor that doesn't mean it's spanning multiple lines in the file.

Code:
cat -n /etc/fstab

If you've pasted it, and that's inserted a newline, then join the two lines using Shift-j.
This User Gave Thanks to Scott For This Post:
# 3  
Old 12-18-2013
This looks like a mount to a remote system. You should look at using autofs instead. If for some reason that remote system becomes unreachable, and you reboot, it could possibly hang the box while attempting to mount that remote filesystem. With autofs the filesystem is only mounted when it is accessed.
# 4  
Old 12-19-2013
Thanks...Issue was the syntax of fstab ( for nfs filesystem ) was not correct. So, it was treating the line as 2 diff line;s. Once's that is corrected long line worked fine.. Thanks for the all help.

-- Thread can be closed
# 5  
Old 12-19-2013
Thanks for the update - thread closed.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Mount Linux filesystem not defined in etc/fstab

Hello, is there a way to mount a filesystem which is not defined in the etc/fstab ? Could someone share me any code or command (3 Replies)
Discussion started by: srilaxman
3 Replies

2. Linux

/etc/fstab entries

Hi, Can anyone explain why we use defaults 0 0 in fstab and what does 0 inidicate 10.250.104.50:/home/u /home/u nfs defaults 0 0 Thanks in advance Muzaffar (3 Replies)
Discussion started by: muzaffar.k
3 Replies

3. UNIX for Dummies Questions & Answers

/etc/fstab mount issue

I have a virtual machine with Redhat installed . I am trying to link CD/DVD Drive 1 to /media/cdrom1 and CD/DVD Drive 0 to /media/cdrom0 I tried making these changed in /etc/fstab by adding the below line to it /dev/sr0 /media/cdrom0 iso9660 user,noauto,exec,utf8 0 0... (2 Replies)
Discussion started by: walterthered
2 Replies

4. Shell Programming and Scripting

Mount/fstab Question . . .

Greetings! Got another basic question for the community :) After wiping a drive with dd, and calling mkfs.ext4 to set things up again, fstab seems to need to be refreshed somehow to allow a call to mount for the volume. What might the "secret handshake" be to pull this off without first... (6 Replies)
Discussion started by: LinQ
6 Replies

5. Ubuntu

fstab question

I have created a thumbdrive with a bootable version of Ubuntu 10.04 LTS, it uses Grub legacy. One of the issues I have is that everytime I boot a new system from the thumbdrive, it writes entries for the partitions in the fstab. Consequently, when I boot another system, the OS reads the fstab... (2 Replies)
Discussion started by: stumpyuk
2 Replies

6. UNIX for Dummies Questions & Answers

fstab

hi , i'm creating a shell script using fstab for my project of last year, i wonder you can help me to know what is the command allow me to get the list of unmounted partitions. thanks (4 Replies)
Discussion started by: Linux001
4 Replies

7. Red Hat

Using a variable in fstab

We have a load of servers which require cloning in VMWare, each of which have their own area on netapp for storage. I was trying to be a bit clever and use a variable within /etc/fstab so I dont need to edit it every time like so; netapp:/vol/vol_nfs_server/servers/`hostname | sed 's/\./ /g' |... (1 Reply)
Discussion started by: JayC89
1 Replies

8. UNIX for Dummies Questions & Answers

FSTAB Problem

Hello, I transferred a machine from a tape back into a virtual machine. I created several paritions so I could xfter the date into them and made sda1 the active one. When I try and boot the VM it does not work. I used KNOPPIX to create the partitions and transfer the information from the tape... (1 Reply)
Discussion started by: mojoman
1 Replies

9. UNIX for Dummies Questions & Answers

fstab question

Folks; Please be patient with this issue when you read it. I know it's a little tricky. I have a new share created on my SUSE 10 box. I'm trying to edit the /etc/fstab file or find a way to make this share needs no authentication. The reason for that is we're using an outside application to... (3 Replies)
Discussion started by: Katkota
3 Replies

10. Linux

/etc/fstab

I've created a new drive and i've added it to my fstab file but on startup it will not mount. here is how i put it into my fstab file, is that right? /dev/hdb2 /disk2a ext3 defaults 1 2 (6 Replies)
Discussion started by: byblyk
6 Replies
Login or Register to Ask a Question