Sponsored Content
Full Discussion: Fstype list
Top Forums UNIX for Dummies Questions & Answers Fstype list Post 13064 by satan404 on Thursday 10th of January 2002 04:16:09 PM
Old 01-10-2002
thx, but I figured it out...

I used:

#mount -t iso9660 /dev/cdrom /mnt/cdrom


works perfect!

But I'm wondering one thing! Do I have tot type that string everytime I start the computer? Is there some way to make it mount by itself?

CheersSmilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

send email from address list and subject list

Hello, Here is my problem. there are two files. first.txt <<< contains email address ====== abc@mail.com abd@mail.com abe@mail.com second.txt <<< contains webpage links ======== http//www.test.com/abc/index.html http://www.test.com/abd/index.html http://www.test.com/abe/index.html... (2 Replies)
Discussion started by: paulds
2 Replies

2. UNIX for Dummies Questions & Answers

counting a list of string in a list of txt files

Hi there! I have 150 txt files named chunk1, chunk2, ........., chunk150. I have a second file called string.txt with more than 1000 unique strings, house, dog, cat ... I want to know which command I should use to count how many times each string appears in the 150 files. I have tried... (4 Replies)
Discussion started by: Pep Puigvert
4 Replies

3. UNIX for Advanced & Expert Users

help with sorting sequence in Unix C:sort -t ':' +0 -1 -n +1 -2 +2 -3 -o list list

Hi List is 000|2008-07-17|556543|RTJ|35-RTGJ|EYT 465|2008-11-10|567789|GHJ|45-DGHH|ETU 533|2008-09-06|567789|GHJ|45-DGHH|ETU How does it do it? sort -t ':' +0 -1 -n +1 -2 +2 -3 -o list list (6 Replies)
Discussion started by: gurvinder
6 Replies

4. Shell Programming and Scripting

Splitting a list @list by space delimiter so i can access it by using $list[0 ..1..2]

EDIT : This is for perl @data2 = grep(/$data/, @list_now); This gives me @data2 as Printing data2 11 testzone1 running /zones/testzone1 ***-*****-****-*****-***** native shared But I really cant access data2 by its individual elements. $data2 is the entire list, while $data,2,3...... (1 Reply)
Discussion started by: shriyer
1 Replies

5. Shell Programming and Scripting

find list of files from a list and copy to a directory

I will be very grateful if someone can help me with bash shell script that does the following: I have a list of filenames: A01_155716 A05_155780 A07_155812 A09_155844 A11_155876 that are kept in different sub directories within my current directory. I want to find these files and copy... (3 Replies)
Discussion started by: manishabh
3 Replies

6. Shell Programming and Scripting

Convert perl qw list to text file list?

Does anyone have a good example? I am having trouble looping.. Thanks (1 Reply)
Discussion started by: mrlayance
1 Replies

7. Solaris

Unknown fstype?

Dear all I have formatted/labeled/partitioned my new disk but when trying to mount it is returning 'unknown fstype' .Can you please let me know how to solve this problem? Thank you (37 Replies)
Discussion started by: hadimotamedi
37 Replies

8. Shell Programming and Scripting

Take a list if strings from a file and search them in a list of files and report them

I have a file 1.txt with the below contents. -----cat 1.txt----- 1234 5678 1256 1234 1247 ------------------- I have 3 more files in a folder -----ls -lrt------- A1.txt A2.txt A3.txt ------------------- The contents of those three files are similar format with different data values... (8 Replies)
Discussion started by: realspirituals
8 Replies

9. UNIX for Dummies Questions & Answers

Creating a column based list from a string list

I have a string containing fields separated by space Example set sr="Fred Ted Joe Peter Paul Jean Chris Tim Tex" and want to display it in a column format, for example to a maximum of a window of 100 characters And hopefully display some thing like Fred Ted Joe ... (3 Replies)
Discussion started by: kristinu
3 Replies

10. Shell Programming and Scripting

Copy list of files from a keyword list to another directory

Hello, I have a folder with a massive amount of files, and I want to copy out a specific subset of the files to a new directory. I would like to use a text file with the filenames listed, but can't get it to work. The thing I'm hung up on is that the folder names in the path can and do have... (5 Replies)
Discussion started by: twjolson
5 Replies
updfstab(8)							   Red Hat Linux						       updfstab(8)

NAME
updfstab - update /etc/fstab to reflect removable devices SYNOPSIS
updfstab [-nt] [--usage] DESCRIPTION
updfstab is designed to keep /etc/fstab consistent with the devices plugged into your system. It looks for devices such as cdroms, zip and jaz drives, ls120 drives, and digital cameras on the SCSI and IDE buses. USB devices look like SCSI devices to user space, so those are supported as well, but are only added if they are currently attached to the system (having a scsi device assigned to them is not suffi- cient). Devices which updfstab adds to /etc/fstab are marked with the kudzu mount option to distinguish them from other devices. updfstab will not remove devices from /etc/fstab unless they are marked with the kudzu mount option. It also ignores devices that are already listed in /etc/fstab, or which have multiple partitions on the media currently inserted. OPTIONS
-c,--config=path Use the configuration specified by path, rather then /etc/updfstab.conf. -n,--normalize Normally, updfstab tries to touch /etc/fstab as little as possible. When this option is given, it will instead move all of the devices with the kudzu mount option to the end of the file, and will list the devices in the same order the internal probe returns. -t,--test When this option is specified, updstab does not update the /etc/fstab file. Instead, it displays the fstab entries it would use to standard out. If no changes need to be made, it outputs the string (nothing to do) rather then a full filesystem table. CONFIGURATION
The devices updfstab looks for are specified by its configuration file, /etc/updfstab.conf by default. It defines a number of devices which updfstab looks for on the system, along with various attributes of that device. If a single device name is given multiple times, later val- ues override those given earlier. However, match directives accumulate; all specified matches remain in effect for that device. The default value of flags may be changed by specifying a new value for that flag outside of any device section, which changes the default for all future devices. A simple configuration file looks like this: # sample updfstab configuration file symlink false device cdrom { symlink true match cdrom } device zip { match hd zip match floppy "zip" } Here two devices are specified, cdrom and zip. If a cdrom device is found on the system, a /dev/cdrom is created pointing to the /dev entry for the device, and /mnt/cdrom is added to /etc/fstab. The next entry looks for hard drive devices with zip in their description as well as floppy devices with zip in their description. If either is found /mnt/zip is added to /etc/fstab, but no symlink is created. Here is the complete list of directives which may be used: device name Set attributes for device name name. The name is used in the /etc/fstab entry and for any symbolic links which are created. include path Parsing of the current configuration file is stopped, and the file specified by path is read for current configuration information. Multiple include directives may be given, but they may not appear inside of device sections. match class string This directive adds a new rule for this device type; devices found on the system which match this rule are considered a device of the type whose section the match directive appears in. The class must be cdrom, floppy, or hd. If string appears, it must be a sub- string of the physical device's description for the rule to match. nofstab val If val is true, updfstab does not add a mount entry to /etc/fstab. This is mainly useful in conjunction with symlink. partition num Specifies a default partition number which should be mounted from this device. If 0 is used, no partition number appears. updfstab always scans /proc/partitions for the proper partition number before relying on this value. skip val The device entry is skipped. This lets a configuration file undefine a device that was defined earlier (such as in an included file). val should be true or false. symlink val If val is true, updfstab creates a symbolic link in the /dev directory pointing to the actual device. This symbolic link is then used in /etc/fstab. FILES
/etc/fstab /etc/updfstab.conf /proc/partitions SEE ALSO
kudzu(1) AUTHORS
Erik Troan <ewt@redhat.com> Red Hat, Inc. 29 Jan 2003 updfstab(8)
All times are GMT -4. The time now is 11:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy