Sponsored Content
Operating Systems Solaris How do I mount a USB Hard Drive? Post 302991729 by jlliagre on Wednesday 15th of February 2017 09:14:53 PM
Old 02-15-2017
Quote:
Originally Posted by oldtimertj
Maybe it's the disk itself. I'm thinking of trying a drive that is less that 1TB.
Yes, don't underestimate the disk size factor.

Solaris 9 is really old, released 15 years ago. At that time the internal disks size was probably less than 100 GB, and I believe the maximum partition size for UFS was still 1TB so I wouldn't bet for pcfs support for such an incredibly large disk by Solaris 9 standard.

Moreover, your USB ports are likely USB 1.1 so even if you manage to access your disk, the bandwidth would be painfully slow.
This User Gave Thanks to jlliagre For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

mount external usb drive on Redhat 9

I am using Redhat 9 Linux, and am trying to get my external usb drive mounted (fat32). If I look at the KDE Control panel, it lists a usb 2.0 storage device under "USB Devices" (also in /proc/bus/usb), and under "SCSI" as scsi1. I looked at /proc/scsi/usb-storage-0, and it lists it there also. What... (6 Replies)
Discussion started by: jeremiebarber
6 Replies

2. Solaris

FAT32 usb external hard drive - how to mount??

Hello ! What is the comand to mount and usb hard disk ? I have Solaris 10 installed! 10nx! (1 Reply)
Discussion started by: daniel.balasa
1 Replies

3. SCO

USB hard drive problem

I have a USB hard drive attached to my SCO OSR6 machine I accidently powered it off while it was mounted and now the OS complains when you try to re-mount it and it appears that it is complaining because it has a new device number so it isn't at the original device location anymore. does anyone... (1 Reply)
Discussion started by: garycrow
1 Replies

4. Filesystems, Disks and Memory

USB Pen Drive & Hard Disk

Hi Guys, I have an external USB Hard Disk Drive on which I have 3 partitions and it works fine under Windows XP but when I am using Red Hat Linux 5 I don't see any icon for this USB HDD. Also I am not able to browse my USB Pen Drive. However, I can use it under Mandrake Linux without any... (4 Replies)
Discussion started by: indiansoil
4 Replies

5. Solaris

USB External Hard Drive for Solaris 10 Sparc

Hi- I would like to know if anyone has used any USB External Hard Drive, about 500/750GB or 1TB, with any of the Solaris 10 "SPARC" systems. Not on intel nor amd platform. I'm looking for the compatible drive and found a few listed on Sun solaris ready page, but I'd like to have inputs from... (3 Replies)
Discussion started by: agfa_109
3 Replies

6. Solaris

Can not Format USB hard drive

Hey i have a new USB 320GB harddrive i want to use in my Solaris 10 enviroment. i first had the drive format in windows with FAT32, Solaris was able to auto mount this drive and everything was fine, until i realised that it would not except files greater then 4gb, due to the limitations of... (6 Replies)
Discussion started by: dshakey
6 Replies

7. UNIX for Advanced & Expert Users

script to automatically mount external usb hard disk

hi all, I have a debian lenny 5.0 server without GNOME installed. the server is at a customer's premise. I want to backup data from the server to the external usb hard disk. the backup will start at e.g 01:00 everyday. the user will plug the drive before going home. also the user will... (1 Reply)
Discussion started by: coolatt
1 Replies

8. Filesystems, Disks and Memory

mount old hard drive

Hi guys, I have been looking around and searching for the past hour and did not see anything. but please forgive me if I missed something. I had a sparc 10 ultra cpu die on me, I got a replacement server from a very generous guy here, now I am getting around to remounting my old hard drive with... (0 Replies)
Discussion started by: DrDarkMatter
0 Replies

9. Solaris

How to mount USB pen drive?

Hiii, Please let me know the steps for mounting my USB pendrive in solaris 10 platform. Thanks & Regards, Bhargav P (5 Replies)
Discussion started by: bhargav90
5 Replies

10. UNIX for Advanced & Expert Users

Waking Up USB External Hard Drive for file archiving

Hello Experts, I hope I'm writing to the correct category for my question. I have a very basic shell script for doing file archiving to the external usb hard drive (WD studio edition II 2TB formatted as FAT32 for compatibility). The shell script only needs to run once per day. It basically... (8 Replies)
Discussion started by: johankor
8 Replies
ufiformat(8)						      System Manager's Manual						      ufiformat(8)

NAME
ufiformat - Format a USB floppy disk. SYNOPSIS
ufiformat [ -hiqvV ] [ -f|--format [size]] [ devicepath ] OPTIONS
-f, --format [size] Specify format capacity SIZE in KB. Without -f option, the format of the current media will be used. -V, --verify Verify the medium after formatting. Only meaningful without -i option. -F, --force Do not perform any safety checks. -i, --inquire Show device information, instead of performing format. Without devicepath argument, list all USB floppy disk devices attached to the system. -v, --verbose Be verbose. -q, --quiet Suppress minor diagnostics. -h, --help Show help message. DESCRIPTION
ufiformat is a raw level formatting disk utility for USB floppy devices. Raw level format is to write gap,index,sectors to the unformatted disk using special commands specific to the disk controller, to make the plain magneto-sensitive film into sector-addressable medium. Note that raw level format is NOT about creating filesystems (fs(5)) on the disk. After mid-1990's, floppy disks are sold generally pre-formatted in MS-DOS 2HD format: 80 cylinder, 2 heads, 18 sectors/track, 512 bytes/sector; it is seldom in need for raw formatting. Nevertheless raw formatting could cure some disk and drive mismatchings. WARNING: You will NOT raw format an LS-120 disks or (removable) hard disks; they are precision formatted in factory and cannot be raw reformatted. ufiformat supports only the following format capacities: 1440/1232/1200 (for 2HD disk) 720/640 (for 2DD disk) The device should support the capacities also, otherwise ufiformat shows an error message. The above format capacities are predefined in the program, but each USB floppy device also has a limited set of formats (defined internally) that it can format media to. The allowed format capacities are obtained by querying (-i) the device, but this only returns the total format capacity and not CHS (cylinder, heads and sectors), hence a mapping is required in the program. EXAMPLES
Inquiry the device for available format: # modprobe sg # ufiformat -i /dev/sda vendor: Y-E DATA product: USB-FDU write protect: off media type: 2HD status block size kb formatted 2880 512 1440 formattable 2880 512 1440 formattable 1232 1024 1232 formattable 2400 512 1200 Format the floppy disk in 1.44MB, and create a FAT filesystem: # ufiformat -f 1440 /dev/sda # mkdosfs -I /dev/sda PREREQUISTES
ufiformat needs /dev/sg* SCSI pass-thru device to operate. If the device does not exist, add the driver by invoking modprobe sg. You often need to be root to do anything with /dev/sd*. SEE ALSO
fdformat(8), floppy(8), sg(4) "Universal Serial Bus Mass Storage Class - UFI Command Specification" Revision 1.0 December 14 1998 http://www.usb.org/developers/devclass_docs/usbmass-ufi10.pdf ufiformat(8)
All times are GMT -4. The time now is 04:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy