1828625 Members
1702 Online
109983 Solutions
New Discussion

Re: devices

 
SOLVED
Go to solution
Mark Ellis
Advisor

devices

Is there a RH equivelant to HP-UX's prtconf?
11 REPLIES 11
Steven E. Protter
Exalted Contributor

Re: devices

I'm not sure there is.

ll the devices in the /dev directory.

Try the GUI hardware browser.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Mark Ellis
Advisor

Re: devices

I am trying to find out the device file name of my tape drive...
Martin P.J. Zinser
Honored Contributor

Re: devices

Hello Mark,

dmesg | grep -i tape

If it is a SCSI tape most probably
/dev/(n)st0 is a good start.

Greetings, Martin
Roberto Polli
Trusted Contributor

Re: devices

browse files in
/proc/scsi
/proc/driver
and
/proc/devices

If kernel modules are load (eg
#modprobe st
) it should work.

Peace, R>
Martin P.J. Zinser
Honored Contributor

Re: devices

Btw, the GUI hardware browser SEP referred to
is invoked using the hwbrowser command. This does show the devices too.

Greetings, Martin
Mark Ellis
Advisor

Re: devices

Ok - so I can see my DAT drive is at st0, but what about the other options? Like "yn", "ny", ... those types of settings I don't see an option for (?)
Martin P.J. Zinser
Honored Contributor

Re: devices

Hello Mark,

can you please elaborate a bit more on what information exactly you expect the "yn", "ny" to give you? I am sure it can be found in Linux if you tell us what you look for :-)

Greetings, Martin
Mark Ellis
Advisor

Re: devices

yn= yes to rewind on open and no to rewind on close
Jeroen Peereboom
Honored Contributor

Re: devices

Well,

there is an nst0 devicename for 'norewind'.

JP
Mark Ellis
Advisor

Re: devices

Can you explain to me what the others are? nost0, nst0, nst0l, osst0... st0a, st0l, st0m?

Thanks!
Martin P.J. Zinser
Honored Contributor
Solution

Re: devices

Hi,

the *ost* devices are special cases for tapes made by OnStream (QIC etc.)

The rest:

/dev/[n]stnx n=no rewind st
/dev/nst0m none default density
l=low density
m=medium density
a=autoselect density

It seems the exact way these modes are mapped can be influeende via /etc/stinit.def (man stinit for further information).

Greetings, Martin