what is mount ,tell me about mount ,how can u use in real
time project??
Answers were Sorted based on User's Feedback
Answer / sreedhar
In computers, to mount is to make a group of files in a
file system structure accessible to a user or user group.
In some usages, it means to make a device physically
accessible.
In a UNIX environment, the mount command attaches discs, or
directories logically rather than physically. The Unix
mount command makes a directory accessible by attaching a
root directory of one file system to another directory,
which makes all the file systems usable as if they were
subdirectories of the file system they are attached to.
Unix recognizes devices by their location, as compared to
Windows, which recognizes them by their names (C: drive,
for example).
Command Usage example:
$ mount /dev/hda1 /mnt/temp
Is This Answer Correct ? | 14 Yes | 0 No |
Answer / visu_kvg
The process of adding or linking or mapping the formatted
disk space to a folder is called mounting.
Like the boot partition is formatted in ext2/3 filesystem
and then it is mounted to /boot folder.You cannot use any
partition or disk without mounting
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / saravanan
mount is used for mounting the devices and filesystem it is
a command utility for mounting devices
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / chirag
if you have 2 operating system on one HDD, mean linux and
windows now, if u wants to use the D:\ of windows then u can
use mount command.
after mounting D:\ u can directly put u r data from linux
when u re-boot system and login to windows then u will be
able to use that data.
Is This Answer Correct ? | 8 Yes | 4 No |
Answer / satya
mount is a command which is used to copy or to use the
files or folders which are in windows into ur linux.
coomand:
mount /dev/hda5 /mnt/temp
Is This Answer Correct ? | 6 Yes | 4 No |
Answer / sangu
mounting a specific file system in linux so that the user
can make use of the file present in the specific mount
point directory.
eg:
mount -t ext2.ko /dev/sda5 /mnt
here ext2.ko is the file system
device partition is /dev/sda5
/mnt is the mount point directory which contains the files
of the specific file system
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / varakumar reddy
mount attaches a file system to the file system hierarchy at
the mount_point, which is the pathname of a
directory. If
mount_point has any contents prior to the mount
operation,
these are hidden until the file system is unmounted.
umount unmounts a currently mounted file system,
which may
be specified either as a mount_point or as
special, the
device on which the file system resides.
The table of currently mounted file systems can be
found by
examining the mounted file system information file.
This is
provided by a file system that is usually
mounted on
/etc/mnttab. The mounted file system
information is
described in mnttab(4). Mounting a file system adds an
entry
to the mount table; a umount removes an entry
from the
table.
When invoked with both the special and mount_point
argu-
ments and the -F option, mount validates all
arguments
except for special and invokes the appropriate
FSType-
specific mount module. If invoked with no arguments,
mount
lists all the mounted file systems recorded in the
mount
table, /etc/mnttab. If invoked with a partial
argument list
(with only one of special or mount_point, or
with both
special or mount_point specified but not FSType),
mount
will search /etc/vfstab for an entry that will
supply the
missing arguments. If no entry is found, and the
special
argument starts with "/", the default local file
system
type specified in /etc/default/fs will be used.
Otherwise
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / hari
guys for sorting out things :)
In linux everything is a file whether it is hard disk or
sound card or video ,pci. everything everything is a file.
kk
mount is related to Hard disk.
mount = mtab (both command gives all mounted drives of HDD ,
means active ,running partitions of the Hard disk "
to view all these things we have to Mount Know ?
everything is a file in Linux so we have to alter the File
System Tab called "fstab" in /etc
so guys vim /etc/fstab
/dev/hda5 /mnt/hda5file ext3 defaults 0 0, somewhat like this
hda5 means I Created a Partition called hardisk5 , it is
starting from 1 normally. hda means it is IDE harddisk
IDE is the short of Integrated Digital Electronics
after that save the file (wq)
ok
then use
mount -a (means mount all for easiness) or you can use
mount /dev/hda5 or mount -o remount /dev/hda5
please check it
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / subbareddy kake
All files accessible in a Unix system are arranged in
one big tree, the file hierarchy, rooted at /. These files
can be spread out over several devices. The mount command
serves to attach the file system found on some device to
the big file tree. Conversely, the umount(8) command will
detach it again.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / lakshmi sreekanth
All files accessible in a Unix system are arranged in
one big tree, the file hierarchy, rooted at /.
These files can be spread out over several devices. The
mount command serves to attach the file system found on some
device to the big file tree. Conversely, the umount will
detach it again.
Is This Answer Correct ? | 0 Yes | 3 No |
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above
How to display no of records in oracle using unix command?
Describe the zip/unzip command using gzip.
How can i know my Filesystem and its current usage in my prod UNIX system?
why unix commands can be divided into internal and external commands?
What Command will remove a Directory in UNIX?
Explain ‘library functions’ with respect to unix commands?
By using which command we can find the CPU utilization time?
What does grep v do?
what is the command to print last 8 lines of any text file.
What is the command to view process running?
Differentiate cat command from more command.