answersLogoWhite

0

What are the various mount table enteries in unix?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

This can vary depending on the Unix/Linux distribution. Your best bet is to use the 'man mount' or 'info mount' commands.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the various mount table enteries in unix?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you mount CD drive in SCO open server unix?

To mount a CD in SCO Open server UNIX: login as root make a directory named cdrom then # mount -f HS,lower /dev/cd0 /cdrom


What operating system did the maker of Linux copy?

Linux is not an exact copy of any previous operating system. It is modeled after various Unix and Unix-like systems.


How many processes can you have in Unix?

You can have as many processes as will fit in the process table and remain comfortably in memory (which is a lot).


Is there any simulator that can simulate Unix terminal so that you can run Unix commands wihtout installing it?

There are various software packages that provide a Unix-like environment. They can be used for educational purposes, for scripting, connectivity and porting Unix and Linux software to Microsoft Windows systems. Some examples of these packages are: * MKS Toolkit * UnxUtils * Cygwin * Interix


Is there any simulator that can simulate unix terminal so that you can run unix command wihtout installing it?

There are various software packages that provide a Unix-like environment. They can be used for educational purposes, for scripting, connectivity and porting Unix and Linux software to Microsoft Windows systems. Some examples of these packages are: * MKS Toolkit * UnxUtils * Cygwin * Interix


Which command displays the current contents of the entire ip routing table on a unix or mac os x machine?

route -n


What is the difference between Linux and Unix?

To put it very generically, Linux is an operating system kernel, and UNIX is a certification for operating systems. The UNIX standard evolved from the original Unix system developed at Bell Labs. After Unix System V, it ceased to be developed as a single operating system, and was instead developed by various competing companies, such as Solaris (from Sun Microsystems), AIX (from IBM), HP-UX (from Hewlett-Packard), and IRIX (from Silicon Graphics). UNIX is a specification for baseline interoperability between these systems, even though there are many major architectural differences between them. Linux has never been certified as being a version of UNIX, so it is described as being "Unix-like." A comprehensive list of differences between Linux and "UNIX" isn't possible, because there are several completely different "UNIX" systems.


What is QNX?

QNX - is a piece of UNIX-based software for use on various devices. These include desktop computers, mobile phones and laptops.


What is uucp?

UUCP is the abbriviation of Unix to Unix copy. It is worldwide email system called UUCP or Unix to Unix copy.This email system was developed for the operating system called Unix.


Is UNIX based on Linux?

No, but Linux is based on Unix since Linux is a Unix clone.


Who is Unix work performed by?

Unix work is performed by users of the unix system, for application and system programs, or anything that requires a Unix system.


Write an Algorithm for multiplication table of an integer?

int firstNumber,secondNumber for(firstNumber = min; firstNumber <= max; firstNumber++); { for(secondNumber = min; secondNumber <=max; secondNumber++); int result firstNumber * secondNumber; }