Sponsored Content
Top Forums UNIX for Dummies Questions & Answers SCO UNIX Open Server Version 5.0.2 Post 302913499 by mustish1 on Sunday 17th of August 2014 08:26:08 PM
Old 08-17-2014
SCO UNIX Open Server Version 5.0.2

I have a CD SCO Unix Open Server Version 5.0.2 but I am missing the botable 1.44 floppy disk.Can any one please tell me where can I download the botable disk? Also I have HP Pavillion 512 MB RAM and 20 GB Hard disk can I use this machine for the installation of SCO Unix?

Thanks
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sco open server 5.0.6

I'm new to the whole Unix thing and have inherited a network running Macs, Windows 2000 and Unix. The Unix side is very suspect at this point and I want to change out the server. I'd love to use one of the new Apple servers but can't find any info on what "flavors" of Unix it will run. Specificly... (3 Replies)
Discussion started by: matthewd
3 Replies

2. UNIX for Advanced & Expert Users

SCO Open Server 5.05 Installaltuion

I'm in the process of installing SCO Open Server 5.05 on the following platform: Hardware: IBM 300PL 64 MB RAM Yamaha 16/4/16 CDRW (Internal defined on SCSI ID 3 LUN 0) I'm able to boot from the CD and advance to the Installation screen but when it asks for where the media source will... (3 Replies)
Discussion started by: budrito
3 Replies

3. SCO

SCO Open Server.

Dear All, I am considering installing SCO Open Server as an alternative to MS Exchange. Has anybody had any real world experience of using Open Office? Thanks, TC. (1 Reply)
Discussion started by: TCuk
1 Replies

4. Shell Programming and Scripting

IInd Hard Disk Mounting Problem on 1st HDD On SCO UNIX Open Server

Hi Engg. ! :mad: I have a harddisk on which SCO UNIX Open Server was installed. There was some data (in .dbf format) on it. Present condition of HDD is that it is not booting. Now I want to mount this HDD through other HDD on which SCO UNIX Open Server is installed by attaching... (0 Replies)
Discussion started by: Niraj Gopal Sha
0 Replies

5. SCO

Sco Open Server 5.05

How can I to know procesor type. (1 Reply)
Discussion started by: Batya
1 Replies

6. Filesystems, Disks and Memory

Unix Sco Open Server, Windows Computers Problem Access Unix Shared Files Help!!!!!

Hello Moto I hope someone can help We's here at work, have a unix box with sco openserver 5 on it, so it has a nice gui interface.. and also a fair few windows computers.. a system admin guy b4 me, has set up a user called neil, which can, when u try to access the unix box using windows... (2 Replies)
Discussion started by: haggo
2 Replies

7. SCO

Purchase of SCO Open Server 6.0

I have to purchase SCO Open Server 6.0, so I want to know from where I can get SCO Open Server 6.0 and what is the min. cost in which I can avail this. Thanks and Regards Himanshu Software Engineer R&D Department (4 Replies)
Discussion started by: ghimanshu
4 Replies

8. SCO

SCO Open Server

Hi, Completely new to UNIX - so be gentle Cut a long story short, we have a micros 8700 system (eclipse) that needs the Micros 8700 software installed. The system needs UNIX and I have downloaded and successfully installed SCO open Server 6 and can log into root e.t.c. Now I have... (13 Replies)
Discussion started by: kennyruss
13 Replies

9. UNIX for Advanced & Expert Users

Foxbase 2.1.2d in Sco Unix Open Server 5.0.7

Hi my name is Danilo. I'm trying to install Sco foxbase + 2.1.2d. When i tried to install it with "custom" command, i receive the error: "sed: cannot open: ./tmp/perms/prep/*/prep.message: No such file or directory (error 2) The Operative System is Sco Open Server 5.0.7v (the virtualized version... (1 Reply)
Discussion started by: danilosevilla
1 Replies

10. SCO

Foxbase 2.1.2d in Sco Unix Open Server 5.0.7

Hi my name is Danilo. I'm trying to install Sco foxbase + 2.1.2d. When i tried to install it with "custom" command, i receive the error: "sed: cannot open: ./tmp/perms/prep/*/prep.message: No such file or directory (error 2) The Operative System is Sco Open Server 5.0.7v (the virtualized version... (1 Reply)
Discussion started by: danilosevilla
1 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 01:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy