- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- What is the /dev/perf device?
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
01-08-2001 05:02 AM
01-08-2001 05:02 AM
# ll /dev/perf
crw-rw-rw- 1 root sys 173 0x000000 Dec 30 1998 /dev/perf
# ps -ef | grep perf | grep telnet
root 23362 759 0 09:56:17 perf 0:00 telnetd
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2001 06:34 AM
01-08-2001 06:34 AM
Re: What is the /dev/perf device?
# lssf /dev/perf
Is this device something that you named specifically, using mksf (make special file)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 10:22 AM
01-10-2001 10:22 AM
Re: What is the /dev/perf device?
On my system, I don't have /dev/perf, but lsdev returns the following:# lsdev 173
Character Block Driver Class
173 -1 gelan unknown
Now, major number 173 may coorelate to a different driver on your system; the lssf command, as recommended by Cheryl Griffin should show for sure which driver you're using.
Based on the fact that on my system, major 173 appears to be related to a networking driver, and also, since you have a telnetd session running on it, I suspect that maybe this device is simply an alias to the pty/tty pseudo device files? If I were you, I'd do something like the following, and search for other devices using the 173 major number:
cd /dev
ll -R | grep 173
Hope this helps you,
Bruce Laughlin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 10:52 PM
01-10-2001 10:52 PM
Re: What is the /dev/perf device?
/dev# ll * | grep "173 0x000000"
crw-rw-rw- 1 root sys 173 0x000000 Dec 30 1998 perf
crw--w---- 1 itadmin tty 173 0x000000 Jan 10 18:23 ta
/dev# lssf perf pts/ta
pseudo driver tels minor 0x000000 perf
pseudo driver tels minor 0x000000 pts/ta
Is it safe to delete /dev/perf?
How can I find the driver name for a specific device? In this case; for the device having the major number 173?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 11:18 PM
01-10-2001 11:18 PM
SolutionNobody seems to know what the /dev/perf device is.
You may suppress it using 'rmsf -v /dev/perf' and check for the return value of that command with 'echo $?' (should be 0).
After that, 'insf -e' should re-install special files for all devices and pseudo-drivers.
If your /dev/perf is needed, it will be recreated.
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 11:32 PM
01-10-2001 11:32 PM
Re: What is the /dev/perf device?
rmsf /dev/xyz
and
rm /dev/xyz
?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 11:46 PM
01-10-2001 11:46 PM
Re: What is the /dev/perf device?
rm is the remove that everybody knows...
rmsf removes special files and may be given flags like:
-a : Remove the definition of the device from the system along with all special files that refer to the device
-C class ..... (I won't cut and paste the whole manual page)
The list is quite long, see 'man rmsf' and you'll have everything you need to know about it :7)
Best regards,
Dan