10-25-2019
You do not have backups of your disks and operating systems?
Really?
How is that possible?
Making backups of important operating systems, data and disks is the one of the single most basic tasks anyone who uses a computer should do.
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
Hi guys,
I just got this new 6.0 version and i'm trying to setup a remote office to telnet to this server running sco 6.0, in previous version all i have to do is add this file under /etc/rc2.d call S99route and put the gate in that file and that was it, for some reason in 6.0 it does not... (1 Reply)
Discussion started by: josramon
1 Replies
2. SCO
Hello
We are running a pretty old system here which needs to be re-installed. Unfortunately even if all my licences are okay, my install CD are missing in the box.
I contacted sco in order to get these media kit, with no luck (product discontinued)
I was wondering if some good pal would... (5 Replies)
Discussion started by: qube001
5 Replies
3. SCO
I have a client with 5.0.6 who wants to migrate to new hardware. We have in our posession all appropriate paper software licenses.
Over the years the media has vanished
Can anyone assist with locating an ISO or actual CD containing OpenServer 5.0.6, please?
Thank you (9 Replies)
Discussion started by: theantisco
9 Replies
4. SCO
I am looking for openserver 5.0.6 media. I need build a new production server and we only have the 5.0.5 media.
If anybody can help that be awesome. (9 Replies)
Discussion started by: stlwindadmin
9 Replies
5. SCO
My client has lost the SCO OS 5.0.5 install media.
However, they do have a working SCO 5.0.5 system, but is crumbling apart.
Where can I find the SCO OS 5.0.5 install media?
Or can I get a copy of the SCO CD as a ISO file?
Your help is much appreciated. (7 Replies)
Discussion started by: chedlee88-1
7 Replies
6. SCO
Hello, I'm a system administrator of Russian bowling club located in Tomsk. As a server for our management system we use SCO OpenServer 5.0.4Eb. I know that it's old and so on, but we use it because we, some time ago, bought all the bowling system in used condition, and it works well for years. ... (2 Replies)
Discussion started by: mr_Well
2 Replies
7. SCO
Hi,
can anyone provide me the sources for sco 5.0.6 as iso?
Thanks! (26 Replies)
Discussion started by: VoidCeroOne
26 Replies
8. SCO
Greetings,
I've recently been given responsibility for a legacy server running SCO OpenServer 5.0.4 and upon taking inventory I discovered we have all the license documents but no installation media. Can anyone assist me with where I might download these?
Thanks
Kevin (9 Replies)
Discussion started by: Kevin Harris
9 Replies
9. SCO
Hello, i need if possible media for sco openserver 5.0.6 and also want to know if is possible to upgrade from 5.0.2 to 5.0.6.
Best regards,
Paolo (1 Reply)
Discussion started by: elnino981
1 Replies
10. SCO
hello everyone
i need a copy of sco 5.0.6 iso for isntall a new server crash
I read in a post that someone uploaded to an ftp an iso but I did not find the ftp
any can helpme? (7 Replies)
Discussion started by: mjgeddo
7 Replies
LEARN ABOUT CENTOS
removable-media
removable-media(9P) Kernel Properties for Drivers removable-media(9P)
NAME
removable-media - removable media device property
DESCRIPTION
A device that supports removable media--such as CDROM, JAZZ, and ZIP drives--and that supports power management and expects automatic
mounting of the device via the volume manager should export the boolean (zero length) property removable-media. This property enables the
system to make the power state of the device dependent on the power state of the frame buffer and monitor. See the power.conf(4) discussion
of the device-dependency-property entry for more information.
Devices that behave like removable devices (such as PC ATA cards, where the controller and media both are removed at the same time) should
also export this property.
EXAMPLES
Example 1: removable-media Entry
An example of a removable-media entry from the .conf file of a driver is shown below.
# This entry keeps removable media from being powered down unless
# the console framebuffer and monitor are powered down
#
removable-media=1;
Example 2: Implementation in attach()
Below is an example of how the entry above would be implemented in the attach(9E) function of the driver.
xxattach(dev_info_t *dip, ddi_attach_cmd_t cmd)
{
...
if (ddi_prop_create(DDI_DEV_T_NONE, dip, DDI_PROP_CANSLEEP,
"removable-media", NULL, 0)) != DDI_PROP_SUCCESS)
goto failed;
...
}
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface stability |Evolving |
+-----------------------------+-----------------------------+
SEE ALSO
power.conf(4), pm(7D), attach(9E), detach(9E), ddi_prop_create(9F)
Writing Device Drivers
SunOS 5.10 15 Jun 2001 removable-media(9P)