Sponsored Content
Full Discussion: Mounting Ext2 and Ext3
Operating Systems Solaris Mounting Ext2 and Ext3 Post 302092321 by blowtorch on Monday 9th of October 2006 12:56:36 AM
Old 10-09-2006
I doubt it. What version of Solaris are you using?
On Solaris 8, I ran 'man -k mount_' and got this:
HTML Code:
mount_cachefs   mount_cachefs (1m)  - mount CacheFS file systems
mount_hsfs      mount_hsfs (1m) - mount hsfs file systems
mount_nfs       mount_nfs (1m)  - mount remote NFS resources
mount_pcfs      mount_pcfs (1m) - mount pcfs file systems
mount_s5fs      mount_s5fs (1m) - mount s5 file systems
mount_tmpfs     mount_tmpfs (1m)    - mount tmpfs file systems
mount_udfs      mount_udfs (1m) -  mount a udfs file system
mount_ufs       mount_ufs (1m)  - mount ufs file systems
mount_xmemfs    mount_xmemfs (1m)   - mount xmemfs file systems
I don't think that you would be able to mount any filesystems other than these without first installing the appropriate drivers.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Convert filesystem from reiserfs to ext2

Hi, My current linux server's filesystems is reiserfs. Unfortunately I need to enable quota for my users and as far as I know quota won't run on reiserfs. So, can I convert the filesystem types to ext2 from reiserfs without having to re-install my o/s? Or, is there any quota applications... (1 Reply)
Discussion started by: vancouver_joe
1 Replies

2. Filesystems, Disks and Memory

ext3 filesystem

what do you think about the ext3 journal filesystem?? (3 Replies)
Discussion started by: comadreja
3 Replies

3. Filesystems, Disks and Memory

ReiserFS vs ext3 vs anything else?

As i'm sure you all know, ext2 (and then ext3) is the most widely used linux fs... but some distros (SUSE & Debian) are now chosing to either use by default, or at least give the option of using ReiserFS. What is it about ReiserFS that's so great exactly? I understand that it has a limitless... (6 Replies)
Discussion started by: fishsponge
6 Replies

4. UNIX for Dummies Questions & Answers

/ext2 and /ext3

Hi all, I was installing linux, so i want to know the basic difference between /ext2 and /ext3 filetype.. what is the significance of using /ext2 and /ext3 pls clarify Thanks Vasikaran (2 Replies)
Discussion started by: vasikaran
2 Replies

5. BSD

Mounting ext3 & NTFS on PC-BSD!!

I'm having problem mounting ext3 & ntfs partitions on my PC-BSD OS. Can anyone please help me out here. What are the changes required to be done in fstab?? Are there any patches to be installed?? (1 Reply)
Discussion started by: void_man()
1 Replies

6. UNIX for Dummies Questions & Answers

Mounting fs ext3

I'm trying to find a correct command that will mount a filesystem ext3 the device /dev/sda1 to mount point /mnt/usb but not allow any programs to run from it. I want to be honest as I've read the forum rules... This is a homework question BUT, i'm generally interested in the correct process and... (3 Replies)
Discussion started by: CasperQuiet
3 Replies

7. Linux

Create an ext3 fs image

Which I will use as a loop mount mounted on an arbitrary directory, say /home/me/dir running something like mount -o loop ext3_image.img /home/me/dir What command(s) should I run to create this? I use RedHat. Thanks in advance (1 Reply)
Discussion started by: stevenswj
1 Replies

8. Solaris

OpenIndiana: Can't mount ext2 filesystem

I have oi_151a7 and installed from sfe fuse-ext, libfuse and e2fsprogs. Mount e.g. # mount -F ext2fs /dev/dsk/c4t0d0p1 /mnt returns "mount: Operation not applicable to FSType ext2fs" and $ fuse-ext2 /dev/dsk/c4t0d0p1 ~/tmp/a/ does not output anything but the filesystem seems not to be... (3 Replies)
Discussion started by: bsdx
3 Replies

9. UNIX for Dummies Questions & Answers

Ext2 file system from windows

Hi all, I have some problem with the ext2 file system format. In particolar, I have a unix based system full backup, which is a .iso file. In order to create a bootable usb, i have to format the USB with ext2 FS, and then I have to mount that image on it. The problem is that, I need to it... (3 Replies)
Discussion started by: Mr. Piros
3 Replies

10. Windows & DOS: Issues & Discussions

Ext2 SD card utility to read and write to it

Dear Experts Sorry if it isn't the right subforum I am using windows 7 before partitioning my mobile's (Samsung Galaxy S7) SD card I did backup to all folders that were installed on it. Then I partitioned the SD card using the utility called "Mini Tool Partition" as per the snapshot below (SD... (1 Reply)
Discussion started by: zillah
1 Replies
vfstab(4)							   File Formats 							 vfstab(4)

NAME
vfstab - table of file system defaults DESCRIPTION
The file /etc/vfstab describes defaults for each file system. The information is stored in a table with the following column headings: device device mount FS fsck mount mount to mount to fsck point type pass at boot options The fields in the table are space-separated and show the resource name (device to mount), the raw device to fsck (device to fsck), the default mount directory (mount point), the name of the file system type (FS type), the number used by fsck to decide whether to check the file system automatically (fsck pass), whether the file system should be mounted automatically by mountall (mount at boot), and the file system mount options (mount options). (See respective mount file system man page below in SEE ALSO for mount options.) A '-' is used to indicate no entry in a field. This may be used when a field does not apply to the resource being mounted. The getvfsent(3C) family of routines is used to read and write to /etc/vfstab. /etc/vfstab can be used to specify swap areas. An entry so specified, (which can be a file or a device), will automatically be added as a swap area by the /sbin/swapadd script when the system boots. To specify a swap area, the device-to-mount field contains the name of the swap file or device, the FS-type is "swap", mount-at-boot is "no" and all other fields have no entry. EXAMPLES
The following are vfstab entries for various file system types supported in the Solaris operating environment. Example 1: NFS and UFS Mounts The following entry invokes NFS to automatically mount the directory /usr/local of the server example1 on the client's /usr/local directory with read-only permission: example1:/usr/local - /usr/local nfs - yes ro The following example assumes a small departmental mail setup, in which clients mount /var/mail from a server mailsvr. The following entry would be listed in each client's vfstab: mailsvr:/var/mail - /var/mail nfs - yes intr,bg The following is an example for a UFS file system in which logging is enabled: /dev/dsk/c2t10d0s0 /dev/rdsk/c2t10d0s0 /export/local ufs 3 yes logging See mount_nfs(1M) for a description of NFS mount options and mount_ufs(1M) for a description of UFS options. Example 2: pcfs Mounts The following example mounts a pcfs file system on a fixed hard disk on an x86 machine: /dev/dsk/c1t2d0p0:c - /win98 pcfs - yes - The example below mounts a Jaz drive on a SPARC machine. Normally, the volume management daemon (see vold(1M)) handles mounting of remov- able media, obviating a vfstab entry. If you choose to specify a device that supports removable media in vfstab, be sure to set the mount- at-boot field to no, as below. Such an entry presumes you are not running vold. /dev/dsk/c1t2d0s2:c - /jaz pcfs - no - For removable media on a SPARC machine, the convention for the slice portion of the disk identifier is to specify s2, which stands for the entire medium. For pcfs file systems on x86 machines, note that the disk identifier uses a p (p0) and a logical drive (c, in the /win98 example above) for a pcfs logical drive. See mount_pcfs(1M) for syntax for pcfs logical drives and for pcfs-specific mount options. Example 3: CacheFS Mount Below is an example for a CacheFS file system. Because of the length of this entry and the fact that vfstab entries cannot be continued to a second line, the vfstab fields are presented here in a vertical format. In re-creating such an entry in your own vfstab, you would enter values as you would for any vfstab entry, on a single line. device to mount: svr1:/export/abc device to fsck: /usr/abc mount point: /opt/cache FS type: cachefs fsck pass: 7 mount at boot: yes mount options: local-access,bg,nosuid,demandconst,backfstype=nfs,cachedir=/opt/cache See mount_cachefs(1M) for CacheFS-specific mount options. Example 4: Loopback File System Mount The following is an example of mounting a loopback (lofs) file system: /export/test - /opt/test lofs - yes - See lofs(7FS) for an overview of the loopback file system. SEE ALSO
fsck(1M), mount(1M), mount_cachefs(1M), mount_hsfs(1M), mount_nfs(1M), mount_tmpfs(1M), mount_ufs(1M), swap(1M), getvfsent(3C) System Administration Guide: Basic Administration SunOS 5.10 21 Jun 2001 vfstab(4)
All times are GMT -4. The time now is 07:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy