Re: Virtual Terminal has seen better days

2024-06-17 Thread Anssi Saari
Mike writes: > Thinking back, I seem to recall the issue with the screen turning off > started after I switched from Nouveau to the Nvidia driver. It fixed > the issue I had with X but broke my console. I think I had a similar issue some years ago and these two lines /etc/default/grub helped:

Re: Virtual Terminal has seen better days

2024-06-15 Thread Felix Miata
Mike composed on 2024-06-15 23:47 (UTC+0100): > On Fri, Jun 14, 2024 at 01:49:08PM -0400, Felix Miata wrote: >> The following applies with all FOSS drivers I've ever used except possibly >> mga: >> vga= only works until KMS starts. video= does the desired job while KMS is >> engaged. e.g. >>

Re: Virtual Terminal has seen better days

2024-06-15 Thread Mike
On Fri, Jun 14, 2024 at 01:49:08PM -0400, Felix Miata wrote: > Michael Kjörling composed on 2024-06-14 17:11 (UTC): > > > On 14 Jun 2024 17:47 +0100, from Mike: > > >> I'd be grateful if anyone could give me any pointers to get the > >> terminals looking vaguely sensible, please? I think the fir

Re: Virtual Terminal has seen better days

2024-06-14 Thread Felix Miata
Michael Kjörling composed on 2024-06-14 17:11 (UTC): > On 14 Jun 2024 17:47 +0100, from Mike: >> I'd be grateful if anyone could give me any pointers to get the >> terminals looking vaguely sensible, please? I think the first isse it >> working out how to stop the screen turning off, which I ass

Re: Virtual Terminal has seen better days

2024-06-14 Thread Mike
On Fri, Jun 14, 2024 at 05:11:37PM +, Michael Kjörling wrote: > On 14 Jun 2024 17:47 +0100, from deb...@norgie.net (Mike): > > I'd be grateful if anyone could give me any pointers to get the > > terminals looking vaguely sensible, please? I think the first isse it > > working out how to stop t

Re: Virtual Terminal has seen better days

2024-06-14 Thread Michael Kjörling
On 14 Jun 2024 17:47 +0100, from deb...@norgie.net (Mike): > I'd be grateful if anyone could give me any pointers to get the > terminals looking vaguely sensible, please? I think the first isse it > working out how to stop the screen turning off, which I assume is > because the display is out of r

Virtual Terminal has seen better days

2024-06-14 Thread Mike
Folks, I'm trying to resolve a long standing issue with my virtual consoles. They're just a bit messed up. The most pressing issue is that when I boot, after Grub, I get some miminal output on the screen and then the screen turns off. If I blindly enter my userid and password and then type start

Re: Deterministic delays in POSIX shell scripts (Was: Re: notify via virtual terminal available packages)

2020-09-25 Thread David Wright
On Fri 25 Sep 2020 at 12:28:31 (+), Andy Smith wrote: > On Fri, Sep 25, 2020 at 07:49:19AM -0400, Greg Wooledge wrote: > > On Fri, Sep 25, 2020 at 07:44:25AM +, Andy Smith wrote: > > > "hostid" tends to return a hexadecimal representation of the first > > > IPv4 address (but isn't guarantee

Re: Deterministic delays in POSIX shell scripts (Was: Re: notify via virtual terminal available packages)

2020-09-25 Thread Andy Smith
Hello, On Fri, Sep 25, 2020 at 07:49:19AM -0400, Greg Wooledge wrote: > On Fri, Sep 25, 2020 at 07:44:25AM +, Andy Smith wrote: > > "hostid" tends to return a hexadecimal representation of the first > > IPv4 address (but isn't guaranteed to). > > unicorn:~$ hostid > 007f0101 > > Doesn't look

Re: Deterministic delays in POSIX shell scripts (Was: Re: notify via virtual terminal available packages)

2020-09-25 Thread Greg Wooledge
On Fri, Sep 25, 2020 at 07:44:25AM +, Andy Smith wrote: > "hostid" tends to return a hexadecimal representation of the first > IPv4 address (but isn't guaranteed to). unicorn:~$ hostid 007f0101 Doesn't look very useful. That's just 127.0.1.1 in a 16-bit little endian format. > On a systemd

Deterministic delays in POSIX shell scripts (Was: Re: notify via virtual terminal available packages)

2020-09-25 Thread Andy Smith
Hello, On Thu, Sep 24, 2020 at 08:49:07AM -0600, Charles Curley wrote: > On Thu, 24 Sep 2020 10:38:55 -0400 > Greg Wooledge wrote: > > So you're just doing "sleep 1" every time. > > Ah, thank you. Yup. Which is weird, because it worked when I first > wrote that many years ago. In cron scripts w

Re: notify via virtual terminal available packages

2020-09-24 Thread Greg Wooledge
On Thu, Sep 24, 2020 at 08:49:07AM -0600, Charles Curley wrote: > Ah, thank you. Yup. Which is weird, because it worked when I first > wrote that many years ago. "Many years ago", sh was probably a link to bash, rather than dash.

Re: notify via virtual terminal available packages

2020-09-24 Thread Charles Curley
On Thu, 24 Sep 2020 10:38:55 -0400 Greg Wooledge wrote: > In dash, RANDOM does nothing; it's just an empty variable. And as it > turns out, dash treats that as a zero. > > unicorn:~$ dash > $ echo $((1 + RANDOM % 1200)) > 1 > $ echo $((1 + % 1200)) > dash: 2: arithmetic expression: expecting pr

Re: notify via virtual terminal available packages

2020-09-24 Thread Greg Wooledge
On Thu, Sep 24, 2020 at 08:10:04AM -0600, Charles Curley wrote: > On Thu, 24 Sep 2020 09:53:59 -0400 > Greg Wooledge wrote: > > > RANDOM is a bashism, not available in sh, so that won't work in a > > crontab unless you've altered which shell cron is using to parse the > > crontab. > > Well, that

Re: notify via virtual terminal available packages

2020-09-24 Thread Charles Curley
On Thu, 24 Sep 2020 09:53:59 -0400 Greg Wooledge wrote: > RANDOM is a bashism, not available in sh, so that won't work in a > crontab unless you've altered which shell cron is using to parse the > crontab. Well, that's interesting. The file I pulled that from (in /etc/cron.d) sets two variables

Re: notify via virtual terminal available packages

2020-09-24 Thread Greg Wooledge
On Thu, Sep 24, 2020 at 07:23:28AM -0600, Charles Curley wrote: >5 3 ** * rootsleep $( echo $((1 + > RANDOM \% 1200)) ) ; /usr/bin/apt-get update > /dev/null && /usr/bin/apt-get > -dy dist-upgrade > /dev/null RANDOM is a bashism, not available in sh, so

Re: notify via virtual terminal available packages

2020-09-24 Thread Charles Curley
On Wed, 23 Sep 2020 22:36:36 +0200 Pòl Hallen wrote: > like ubuntu, what's the best way to show a notify alert (via > terminal) about available packages? I take it you mean, *new* available packages. I don't know how Ubuntu does it, so I'll tell you what I do. And the answer depends on what you

Re: notify via virtual terminal available packages

2020-09-24 Thread john doe
On 9/23/2020 10:36 PM, Pòl Hallen wrote: Hi :-) like ubuntu, what's the best way to show a notify alert (via terminal) about available packages? I can't talk about Ubuntu but you could use a cronjob that checks periodicly for new updates and use 'wall' to notify the users. -- John Doe

notify via virtual terminal available packages

2020-09-23 Thread Pòl Hallen
Hi :-) like ubuntu, what's the best way to show a notify alert (via terminal) about available packages? thanks! :) -- Pol

Re: How to execute another login process in a different virtual terminal, where To enter the chroot directly. And run X and GNOME in your Chroot. In Debian 8 with systemd

2016-11-15 Thread Darac Marjal
o run another login process on a virtual terminal different, where you can enter the chroot directly. 1. In the main system, edit the / etc / inittab, searching and modifying the following lines: # Note that most Debian tty7 systems used for the system # X window (X Windows System). If desired, ther

How to execute another login process in a different virtual terminal, where To enter the chroot directly. And run X and GNOME in your Chroot. In Debian 8 with systemd

2016-11-15 Thread R Calleja
Good morning, thank you very much for the help of the attached document. You can tell me how it's done with systemd in debian 8.3 Thank you very much, Robert. How to execute another login process in a different virtual terminal, where To enter the chroot directly. And run X and GNOME in

Re: instant drawing of virtual terminal

2008-08-24 Thread Chris Bannister
On Fri, Aug 22, 2008 at 04:00:04PM +0100, hasan ali wrote: > How can I make new screenfulls of text get drawn instantly in a virtual > console, rather than having to wait for the text to scroll up. For example > when > paging with less, I have to wait for the entire screen to scroll up until I >

instant drawing of virtual terminal

2008-08-22 Thread hasan ali
How can I make new screenfulls of text get drawn instantly in a virtual console, rather than having to wait for the text to scroll up. For example when paging with less, I have to wait for the entire screen to scroll up until I can read the new text, and this takes a long time when my cpu is under

Virtual terminal fonts grabbled and unreadable

2008-01-07 Thread Zoho Vignochi
Hello: I am running Debian unstable on a ppc with a radeon 9250 pci graphics card. My problem is that the fonts on any virtual terminal become unreadable after I shutdown gdm (gnome display manager). For some setup: During the bootup process the fonts are fine and I can read all messages printed

Virtual-terminal switch dumps X cut/paste buffer onto window

2007-09-23 Thread Bill Brelsford
Another problem after recent X updates in sid: switching back to the X virtual terminal (e.g. via alt-F7) results in the contents of the cut/paste buffer being pasted into the active X window. Anyone else see this behavior? A bug in xserver-xorg (1:7.3+2)? -- Bill Brelsford [EMAIL PROTECTED

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-17 Thread Hugo Vanwoerkom
USB VGA. The X should be running fine, but I lost my current X > in the original monitor. The screen is dark. Unless I press > "Alt+Ctrl+F7" to switch back. Then it will cause the newly started X > be dark. (Should be returned by "Alt+Ctrl+F8") > > Seem that they sha

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Ben Lau
> in the original monitor. The screen is dark. Unless I press >> > "Alt+Ctrl+F7" to switch back. Then it will cause the newly started X >> > be dark. (Should be returned by "Alt+Ctrl+F8") >> > >> > Seem that they shared the same virtual termi

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Marc Shapiro
X > be dark. (Should be returned by "Alt+Ctrl+F8") > > Seem that they shared the same virtual terminal (is it the right way > to describe the problem?).The "XFree86 Local Multi-User Howto" > suggested a method to solve but require a patched kernel. Any other >

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Douglas Allan Tutty
) in > >seperate virtual terminals, but on a single physical monitor. I add the > >virtual terminal to the end of the startx command, as in: > > > >startx -- :0 vt07 > > The vt07 is used by my primary display , and now I would like to use > another vt that all

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Ben Lau
Should be returned by "Alt+Ctrl+F8") > > Seem that they shared the same virtual terminal (is it the right way > to describe the problem?).The "XFree86 Local Multi-User Howto" > suggested a method to solve but require a patched kernel. Any other > way to solve the

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Ben Lau
hould be running fine, but I lost my current X > in the original monitor. The screen is dark. Unless I press > "Alt+Ctrl+F7" to switch back. Then it will cause the newly started X > be dark. (Should be returned by "Alt+Ctrl+F8") > > Seem that they shared th

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Marc Shapiro
ld be running fine, but I lost my current X in the original monitor. The screen is dark. Unless I press "Alt+Ctrl+F7" to switch back. Then it will cause the newly started X be dark. (Should be returned by "Alt+Ctrl+F8") Seem that they shared the same virtual terminal (is it

Re: Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Hugo Vanwoerkom
en it will cause the newly started X be dark. (Should be returned by "Alt+Ctrl+F8") Seem that they shared the same virtual terminal (is it the right way to describe the problem?).The "XFree86 Local Multi-User Howto" suggested a method to solve but require a patched kernel. Any oth

Starts another X server with different virtual terminal (for with use USB VGA) ?

2007-01-16 Thread Ben Lau
e newly started X be dark. (Should be returned by "Alt+Ctrl+F8") Seem that they shared the same virtual terminal (is it the right way to describe the problem?).The "XFree86 Local Multi-User Howto" suggested a method to solve but require a patched kernel. Any other way to solve th

Re: create a virtual terminal?

2005-12-15 Thread Andreas Rippl
a terminal multiplexor that runs several separate "screens" on a single physical character-based terminal. Each virtual terminal emulates a DEC VT100 plus several ANSI X3.64 and ISO 2022 functions. Screen sessions can be detached and resumed later on a different terminal. . Screen

create a virtual terminal?

2005-12-14 Thread tjas ni
I've just installed Debian 3.1 on my old laptop here. I do not intend to use X, so I will experience a lot of terminal work. So I thought I should do something special with my console. After some search on the web I found this image: http://img78.photobucket.com/albums/v298/a

Compaq Armada virtual terminal messing up

2003-11-16 Thread navaja
ok that came out under another thread by accident so im reposting... hi, i'm running unstable, and xfree86 3.2.1-14 before starting x everything is fine. Then I start it and when i try to to got to one of the virtual terminal consoles, the screen is messed up. Even if I stop X they stay m

Re: virtual terminal not working compaq armada

2003-11-09 Thread juan
Peter Baker wrote: hi, i have a compaq armada with debian installed x runs fine, but i when i switch to a virtual terminal ctrl alt f1, ctrl alt f2, etc , i get colored stripes down the screen, its just a mess. is this anything to do with my X settings? surely not? is there any setting that

more virtual terminal problems

2003-11-08 Thread navaja
i have a compaq armada with debian installed x runs fine, but i when i switch to a virtual terminal ctrl alt f1, ctrl alt f2, etc , i get colored stripes down the screen, its just a mess. is this anything to do with my X settings? surely not? is there any setting that changes how the virtual

Re: virtual terminal not working compaq armada

2003-11-07 Thread navaja
z> Try booting with the parameter vga=normal or vga=791, and see if it solves your problem. If it does, add it to your /etc/lilo.conf (or what boot loader you are using), and run /sbin/lilo. even thought that solved the problem, i seem to get the same problem again now... i have been installing ne

Re: virtual terminal not working compaq armada

2003-11-06 Thread Greg Madden
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 05 November 2003 06:06 pm, Alexander Schmehl wrote: > [ sending mail to the list, since it might be worth to be kept in the > archive ] > > Good morning, > > * navaja <[EMAIL PROTECTED]> [031105 16:07]: > > thanks, changing to vga=791 work

Re: virtual terminal not working compaq armada

2003-11-05 Thread Alexander Schmehl
[ sending mail to the list, since it might be worth to be kept in the archive ] Good morning, * navaja <[EMAIL PROTECTED]> [031105 16:07]: > thanks, changing to vga=791 worked... what does it do? You can run the Text-Console in different graphic modes. That is called "framebuffer mode". With v

Re: virtual terminal not working compaq armada

2003-11-05 Thread navaja
Try booting with the parameter vga=normal or vga=791, and see if it solves your problem. If it does, add it to your /etc/lilo.conf (or what boot loader you are using), and run /sbin/lilo. thanks, changing to vga=791 worked... what does it do? pete -- To UNSUBSCRIBE, email to [EMAIL PROTECTE

Re: virtual terminal not working compaq armada

2003-11-05 Thread John Stevenson
i have a compaq armada with debian installed x runs fine, but i when i switch to a virtual terminal ctrl alt f1, ctrl alt f2, etc , i get colored stripes down the screen, its just a mess. is this anything to do with my X settings? surely not? is there any setting that changes how the virtual

Re: virtual terminal not working compaq armada

2003-11-05 Thread Alexander Schmehl
* Peter Baker <[EMAIL PROTECTED]> [031105 12:16]: > i have a compaq armada with debian installed > x runs fine, but i when i switch to a virtual terminal ctrl alt f1, ctrl > alt f2, etc , i get colored stripes down the screen, its just a mess. is > this anything to do with my

virtual terminal not working compaq armada

2003-11-05 Thread Peter Baker
hi, i have a compaq armada with debian installed x runs fine, but i when i switch to a virtual terminal ctrl alt f1, ctrl alt f2, etc , i get colored stripes down the screen, its just a mess. is this anything to do with my X settings? surely not? is there any setting that changes how the

Re: Starting a program in a specific virtual terminal

2003-03-31 Thread Leo Spalteholz
On March 31, 2003 09:12 pm, sean finney wrote: > hi leo, > > On Mon, Mar 31, 2003 at 08:25:57PM -0800, Leo Spalteholz wrote: > > Hi, > > I wanted to run a certain program (darkstat) at boot but I want > > it to run in verbose mode and display the output in one of the > > other virtual terminals so

Re: Starting a program in a specific virtual terminal

2003-03-31 Thread sean finney
hi leo, On Mon, Mar 31, 2003 at 08:25:57PM -0800, Leo Spalteholz wrote: > Hi, > I wanted to run a certain program (darkstat) at boot but I want it to > run in verbose mode and display the output in one of the other > virtual terminals so I can ALT-Fx to it.. I've got it starting at > boot but

Starting a program in a specific virtual terminal

2003-03-31 Thread Leo Spalteholz
Hi, I wanted to run a certain program (darkstat) at boot but I want it to run in verbose mode and display the output in one of the other virtual terminals so I can ALT-Fx to it.. I've got it starting at boot but how can I specify the VT it starts in? Thanks, Leo -- To UNSUBSCRIBE, email to

Re: text mode virtual terminal auto lock

2003-03-12 Thread Kristof Goossens
On Thu, Mar 13, 2003 at 06:48:58AM +, Aurelio Turco wrote: > I have looked around for a screen lock > for the text mode virtual terminal > that activates automatically after > a certain amount of idle time > but could not find even one. > > Does anyone know of any? v

Re: auto login virtual terminal

2003-02-19 Thread Vineet Kumar
* Paul Johnson ([EMAIL PROTECTED]) [030219 08:15]: > On Tue, Feb 18, 2003 at 01:11:19PM -0500, Matthew Weier O'Phinney wrote: > > You might look into 'screen' -- when in a screen session, you can create > > a new screen (i.e. virtual terminal) with a 'Ctrl-A

Re: auto login virtual terminal

2003-02-19 Thread Paul Johnson
On Tue, Feb 18, 2003 at 01:11:19PM -0500, Matthew Weier O'Phinney wrote: > You might look into 'screen' -- when in a screen session, you can create > a new screen (i.e. virtual terminal) with a 'Ctrl-A c', move back and > forth between open screens, etc. Y

Re: auto login virtual terminal

2003-02-18 Thread Matthew Weier O'Phinney
re a somewhat safe way to login to several vt's at once from say > a script? You might look into 'screen' -- when in a screen session, you can create a new screen (i.e. virtual terminal) with a 'Ctrl-A c', move back and forth between open screens, etc. -- Matt

auto login virtual terminal

2003-02-18 Thread Brooks R. Robinson
Greetings, When I do some programming, I like to login to several virtual terminals, so I can compile without exiting [1]nano, read a man page, view other code, etc. Is there a somewhat safe way to login to several vt's at once from say a script? Thanks, Brooks 1. Yes, I said nano, get

Re: Changing from X to a virtual terminal doesn't work

2000-09-28 Thread unai
Thanks both ! You were right. The framebuffer support was in the kernel (a debian instalation kernel version 2.2.17-idepci). I didn't think about it. It's a little bit strange. This kernel has also de configuration lines : CONFIG_FB_VESA=y CONFIG_FB_VGA16=y so support would be quite generic

ODP: Changing from X to a virtual terminal doesn't work

2000-09-28 Thread Mariusz . Przygodzki
: debian-user@lists.debian.org Temat: Changing from X to a virtual terminal doesn't work In debian 2.2 with a Diamond FireGl 1000 pro, the screen goes sleep when I change *from X to a virtual terminal*. Virtual terminals works fine before starting Xserver. Xserver works well also, but it seems lik

Changing from X to a virtual terminal doesn't work

2000-09-28 Thread unai
In debian 2.2 with a Diamond FireGl 1000 pro, the screen goes sleep when I change *from X to a virtual terminal*. Virtual terminals works fine before starting Xserver. Xserver works well also, but it seems like the screen lose the sync or the video card doesn't get back well to virtual ter

Re: Virtual terminal

1999-10-22 Thread Greg Wooledge
loft ([EMAIL PROTECTED]) wrote: > I am student and have to explain how a virtual functions, how a software > could be designed so that a programm would print output to a virtual terminal. Do you mean the virtual consoles which you can flip between with Alt-F2 and so on? If so, these ar

Virtual terminal

1999-10-22 Thread loft
Hello,   I am student and have to explain how a virtual functions, how a software could be designed so that a programm would print output to a virtual terminal. I found nothing on the Web so if you had a few minutes to help me it would be very nice.   Thanks Carine

Re: Executing a process on another virtual terminal

1998-02-24 Thread Norbert Veber
On Mon, Feb 23, 1998 at 12:19:26PM -0700, Fulgham, Brent/SCO wrote: > Is there an easy way to start a process on another virtual terminal? > For example, I would like to run the RC5DES client from Distributed.net > on a virtual terminal, so I can alt-f7 over to it and see how it is >

Re: Executing a process on another virtual terminal

1998-02-23 Thread Joel Klecker
At 12:19 -0700 1998-02-23, Fulgham, Brent/SCO wrote: >Is there an easy way to start a process on another virtual terminal? Install the 'open' package. -- Joel "Espy" Klecker Debian GNU/Linux Developer<mailto:[EMAIL PROTECTED]> <http://www.espy.org/

Re: Executing a process on another virtual terminal

1998-02-23 Thread Steve Mayer
Brent, I believe that the 'open' program will do this for you. Steve Mayer [EMAIL PROTECTED] Fulgham, Brent/SCO wrote: > > Is there an easy way to start a process on another virtual terminal? > For example, I would like to run the RC5DES client from Distributed.net >

Executing a process on another virtual terminal

1998-02-23 Thread Fulgham, Brent/SCO
Is there an easy way to start a process on another virtual terminal? For example, I would like to run the RC5DES client from Distributed.net on a virtual terminal, so I can alt-f7 over to it and see how it is doing from time to time. I tried cat rc5des > /dev/tty7, which doesn't work...