- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- accees a Linux from com port
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-09-2007 08:50 PM
01-09-2007 08:50 PM
How to configure the Linux machine, for this ?
Need all the steps..and send me a URL link ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 09:25 PM
01-09-2007 09:25 PM
Re: accees a Linux from com port
You have to be root to be able to work with or to do some workaround (like chmod u+s, etc).
at first execute `minicom -s`
This will bring you the setup. From there- it's simply logical.
To bring the menu on the screen- use:
CTRL+A,X
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 09:30 PM
01-09-2007 09:30 PM
Re: accees a Linux from com port
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 09:36 PM
01-09-2007 09:36 PM
Re: accees a Linux from com port
2. When you configure your minicom (In serial port setup) by default it uses /dev/ttyS1. Change it to /dev/ttyS0
Also make sure that the serial port is enabled in BIOS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 09:52 PM
01-09-2007 09:52 PM
SolutionIf you want to log in via the COM port on the Linux server from your Windows machine, you need to configure the serial port to have a 'getty' running.
You want a line similar to:
S0:2345:respawn:/sbin/mgetty -s 9600 /dev/ttyS0
See the man page for 'mgetty' for more details.
You can safely muck around with the speed and the gettydefs value if you need to.
Also note, you may need to use 'setserial' if you are using a high speed serial port.
From there, with a connected serial cable, you should be able to get a console on your Windows machine using Hyperterminal (or whatever).
If you want to see boot messages from the server, then you need to configure your boot-loader (grub) to have the 'console=ttyS0,9600' (or similar).
http://www.vanemery.com/Linux/Serial/serial-console.html
http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/Serial-HOWTO.html
A few pretty decent references for all of this.