- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: if i can create /dev/vmnet0 manully ?
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
Discussions
Discussions
Discussions
Forums
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
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
тАО03-08-2008 02:12 AM
тАО03-08-2008 02:12 AM
if i can create /dev/vmnet0 manully ?
# # ls -la /dev/vm*
crw-rw---- 1 root root 10, 165 Mar 8 14:53 /dev/vmmon
So whenever i boot the virtual guest OS, i got the error message:
Could not open /dev/vmnet0: no such file or directory
or
Could not open /dev/vmnet8: no such file or directory
is it possible that I can create these device files manually ? if yes then please write me the syntax to create these device files.
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2008 05:33 AM
тАО03-08-2008 05:33 AM
Re: if i can create /dev/vmnet0 manully ?
Login as root do
# MAKEDEV vmnet
this should create /dev/vmnet0... /dev/vmnet8
if you check you should see ..
#ls -l /dev/vmnet
vmnet0 vmnet2 vmnet4 vmnet6 vmnet8
vmnet1 vmnet3 vmnet5 vmnet7 vmnet9
Enjoy life.
Jean-Pierre Huc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-09-2008 08:43 PM
тАО03-09-2008 08:43 PM
Re: if i can create /dev/vmnet0 manully ?
there is no command like "MAKEDEV" or "makedev" in this SuSE Entrprise 10 System.
Please help
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-10-2008 03:50 AM
тАО03-10-2008 03:50 AM
Re: if i can create /dev/vmnet0 manully ?
It is a longtime since I worked with suse, but usualy MAKEDEV resides in /dev/ so you need to cd to /dev to make it work.
so as root do
#cd /dev
#MAKEDEV vmnet
This should do it ,But you maybe right that MAKEDEV does not exist in Suse 10, having say's that I am sure I di use it under suse to set up some tape drive a wile ago.
Enjoy life.
Jean-Pierre Huc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-10-2008 06:51 AM
тАО03-10-2008 06:51 AM
Re: if i can create /dev/vmnet0 manully ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-12-2008 12:13 AM
тАО03-12-2008 12:13 AM
Re: if i can create /dev/vmnet0 manully ?
SUSE 10, has "makedev" not the "MAKEDEV", but makedev utility/rpm is not the part of default installation, although available in installation media.
Thanks Heironimus
>You should run vmware-config.pl on the host
Thanks I did, and problem gone. ;)
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-12-2008 02:34 AM
тАО03-12-2008 02:34 AM
Re: if i can create /dev/vmnet0 manully ?
>SUSE 10, has "makedev" not the "MAKEDEV", but makedev utility/rpm is not >the part of default installation, although available in installation media.
please ignore the above, following are right info :
1, makedev rpm is part of the installation media.
2, makedev rpm is not part of the default installation.
3, makedev provides the /sbin/MAKEDEV.
Dear HUC, I did
# cd /dev
# /sbin/MAKEDEV vmnet
/sbin/MAKEDEV: line 170: major_/dev/vc/0=4: No such file or directory
/sbin/MAKEDEV: line 170: major_/dev/tty=5: No such file or directory
/sbin/MAKEDEV: line 170: major_/dev/console=5: No such file or directory
/sbin/MAKEDEV: line 170: major_/dev/ptmx=5: No such file or directory
/sbin/MAKEDEV: line 170: major_device-mapper=253: command not found
/sbin/MAKEDEV: don't know how to make device "vmnet"
the only way to resolve the issue is to re-run vmware-config.pl
Thanks All