Questions tagged [console]

Discussions on Linux system console in Ubuntu, as well as on TUI (text user interface). Questions about command-line interface shall be tagged with (command-line), about specific commands and text-interface programs – with tags appropriate to specific problem.

The system console is an interface used by human to control the computer. Basically, it consists of a keyboard and a monitor that provide a text user interface, in or like. The console can display some information from the operation system (such as its startup process), as well as run s, giving feedback of user input and showing textual results of executed commands. Some server machines use terminal connected via a serial port as the console, not their local keyboard and display devices.

Linux keyboard-based implementation of system console includes also , and ability to operate with (fbdev) driver of the video card.

291 questions
9
votes
1 answer

How do I stop displaying "warranties" notice when logging in on tty1 console

That messages the ubuntu displays about warranties and suggestions for help. The only thing I want to see is the version and status of updates. Actually if someone can tell me how to create my own messages to display that would be great.
Fudruckers
  • 131
  • 6
4
votes
0 answers

How to set console TTY1 to CP437?

When I do dpkg-reconfigure console-setup there isn't the CP437, how can I enable it? I've installed the console-data package, put the ACM cp437 on the /etc/default/console-setup, rebooted and run setupcon and run my application, but nothing happens.
1
vote
0 answers

ubuntu 16.04 force serial terminal speed

I'm not able to keep fixed speed on serial terminal /dev/ttyS0. I use: stty -F /dev/ttyS0 115200 root@ubuntu:/# stty -F /dev/ttyS0 -a speed 115200 baud; rows 24; columns 80; line = 0; intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol =…
yo3hcv
  • 163
1
vote
1 answer

Ubuntu 16.04 Server console Dark

I have a home sever running Ubuntu server 14.04 with an attached monitor and keyboard that was working fine. I upgraded to Ubuntu server 16.04 and now the monitor is fine during the BIOS boot phase of startup but then goes dark and I can not access…
Wes
  • 41
  • 1
1
vote
0 answers

How to increase the font size in text-only mode with high DPI

I have installed Ubuntu 15.04 on a Lenovo w550s which has > 200DPI. When I switch into the text-only console (using Ctl-Alt-F1 etc), then the text is so tiny that it can barely be read. I have tried to fix this using this procedure: How do I…
jpp1
  • 1,081
1
vote
3 answers

Can I 'fake' an ncurses environment?

I'm trying to get an fm radio stick working on my streaming box. It uses the command 'radio' for tuning, but the command seems to be running in order for the radio to work (i.e. I can't just tune it then forget about it). Unfortunately, if I try to…
askvictor
  • 203
1
vote
0 answers

less/pager does not trap keys, how do I work around it?

I have Ubuntu 12.10 installation in Virtualbox. Sometimes anything using pager (less, man) just acts funny and seem to fail to "trap" keys, ie. scrolling, searching etc does not work. Instead control keys are just printed ^C^W etc. Even CTRL-C,…
Tuminoid
  • 3,952
0
votes
1 answer

Console login not working

So I'm having some issues with Ubuntu that require console login. My screen will show up saying: Ubuntu 14.04 LTS excite-frags (my username) tty1 excite-frags login: So whatever I try, with the right password, always ends up in a Login Incorrect…
Drew C
  • 1
0
votes
1 answer

Highlight user@device in terminal

Is it possible to highlight the "user@termial:" part written in the console. If I use several commands in a row which all produce large output it would be easier to determine where the last command was. How it should look
Eppa
  • 73
0
votes
1 answer

How do I list the content of a directory in the terminal without a command?

In this video in the minute 16:10 he shows the content of a directory without a command. How do I do that?
user334407
0
votes
2 answers

Is Running programs by address common?

I have read some of the things posted here and I keep reading about people running stuff like /foldername/executable -cmd NAME (was reading about a programmer using Eclipse, so he was testing something he made) I don't see things like that when I…
dgood1
  • 177
0
votes
1 answer

Execute a jar at console from another folder

I'm writing a Python script which at certain point needs to launch a jar file. So I was thinking about making a system call with command: './myjarfile.jar' The problem is that I have that jar in a different folder. So I…
0
votes
2 answers

How to start application from command line without blocking but move the focus on it?

I am trying to start a file compare application from the console by runnning bcompare ... & but this will start the application without activating it (focus). Is there a way to start it and switch to it? I'm looking for something similar to Windows…
sorin
  • 9,888
0
votes
1 answer

Ubuntu started in console only mode, how can I go back to GUI?

I restarted ubuntu and now it's console only, it asks for my login (which I know). How can I go back to GUI? This is on VMWare by the way
Lucas
  • 101
0
votes
0 answers

Is there an ANSI Delete Escape Code?

Let's say I have ABCDEFG in the console, and I want to remove the C (AB DEFG). Is there anyway to do that when the cursor position is currently on the C? Like how \x1b[2J clears the console, but only one character instead of the whole console. NOTE:…
JacobTDC
  • 141