- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Device Files
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2005 05:38 PM
07-04-2005 05:38 PM
specific device files (/dev/rmt/9m). On my new
RP7420 for sure will create new device files
(not /dev/rmt/9m). How can I run my scripts
on my new machine. I don't know about scripting.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2005 06:37 PM
07-04-2005 06:37 PM
Re: Device Files
From ioscan find out device file for tape drive in rp7420 and then edit the script to reflect new device file.
Regards
Mahesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2005 06:41 PM
07-04-2005 06:41 PM
Re: Device Files
Other option you can use is to create a link to new device file from /dev/rmt/9m.
ln -s /dev/rmt/0m /dev/rmt/9m
Hope this helps
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2005 07:45 PM
07-04-2005 07:45 PM
SolutionOr, create a new devicefile with the old name, if you know the new devicefile it is easy.
ll /dev/rmt/0m
crw-rw-rw- 2 bin bin 205 0x051000 Mar 18 15:51 /dev/rmt/0m
mknod /dev/rmt/9m c 205 0x051000
ll /dev/rmt/9m
crw-rw-rw- 2 bin bin 205 0x051000 Mar 18 15:51 /dev/rmt/9m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2005 08:42 PM
07-05-2005 08:42 PM
Re: Device Files
Those are 0m, 9m, c10t13d1BEST. I tried to
read and write on these three using these device file and all are OK. Since these three have identical 0x30000 is this normal,
or will create problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2005 08:56 PM
07-05-2005 08:56 PM
Re: Device Files
Yes, it is normal to have more then one devicefile pointing at the same adress. It is not any problem if you don't thy to use two files concurrently.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2005 11:38 PM
07-05-2005 11:38 PM
Re: Device Files
The difference between the m and the BEST devices are explained on the mt(7) man page
http://docs.hp.com/en/B2355-90697/mt.7.html
If the hardware can handle has the ability, and a BEST device were used, it could change the compression (density, format).
If the hardware can't handle it, using 9m would be the same as using the BEST device.