Ubuntu Serial Connection

Active7 years, 1 month ago

I am using VMware and I want to connect to Ubuntu VMs via serial port. I am connecting both using pipe as referred in this website https://www.vmware.com/support/ws3/doc/ws32_devices3.htmlHow do I proceed to connecting and using them?

drumdrum

Dec 29, 2016  Connect the serial cable After having installed screen, you can connect your serial cable to the cisco device and to your computer. The next step will consist in determining the port of the serial cable: $ sudo dmesg grep -i tty.

3575 gold badges10 silver badges24 bronze badges

Ubuntu Serial Console Client

1 Answer

You should probably try this in three steps:1. setup a terminal emulator program on the Host side.2. test the login program on the VM side.3. setup Ubuntu to boot with a serial console.

Step #2 will verify that you have a working virtual serial link before attempting the more complex step #3. Otherwise step #2 is just a test, and not a required step in setting up a serial console. The first half of step #3 may suffice for your requirements (which you have not described) and then you won't have to do any boot parameter modifications.

Step 1: setup a terminal emulator program on the Host side.

Follow the VMware guide that you mention for 'Connecting an Application on the Host to a Virtual Machine'. The 'application on the Host' will be a terminal emulator program such a HyperTerminal, Putty or TeraTerm (the later two are preferred and multi-platform). You are going to use only the bare essentials of the terminal emulator program; you do not need any SSH or telnet or even modem capability.

Ubuntu

Configure the Host's terminal emulator for VT102 emulation and the port to 115200 baud, 8 data bits, no parity, 1 stop bit. Use the lowest numbered serial port (e.g. COM1 or ttyS0) from VMware.

Step 2: test the login program on the VM (Ubuntu) side.

Use the lowest numbered serial port, /dev/ttyS0.Make sure your username is a member of group 'dialout' (which should own /dev/ttyS0).

Configure the virtual serial port at the Ubuntu shell prompt:

Inspect the terminal emulator program for output.

Execute the login program for the serial connection.

Try to login at the terminal emulator program.

Step 3: setup Ubuntu to boot with a serial console.

What Is A Serial Connection

If you get this far, then you should use the Ubuntu howto for serial console.

The 'Configuring the console login process' will use the same getty that was tested in the previous step. This configuration is to ensure that getty is re-executed (or 'respawned') at the appropriate runlevels and after each logoff. Note that there are different startup procedures depending on the version of Ubuntu, so I won't bother trying to reiterate that here.

Configuring grub(or whatever virtual bootloader) might be optional for you. At this point you would have a setup that provides the serial port as a user login terminal. If you proceed to make changes to the boot parameters for the kernel command line, then all you will get is make visible the kernel output during boot.

Ubuntu Serial Connection Terminal

sawdustsawdust
14.4k1 gold badge25 silver badges38 bronze badges

Not the answer you're looking for? Browse other questions tagged virtual-machinevmwarepipeserial-port or ask your own question.