Re: x and virtual consoles

2019-09-10 Thread Marc Shapiro

On 8/6/19 12:29 AM, Curt wrote:

On 2019-08-06, Ed  wrote:

On 2019-08-06 09:02+0300, Andrei POPESCU wrote:

On Lu, 05 aug 19, 21:56:55, Ed wrote:

How do you run two login managers though so that you can have two users
share the same computer without having to log out? In other words,
whilst I go and make dinner I want to allow someone else to sit here,
without having to shut applications down?

Some login managers have the "switch user" feature.

Does that feature take the user back to the login screen without leaving
the applications running?



https://wiki.archlinux.org/index.php/LightDM

  LightDM's dm-tool command can be used to allow multiple users to be logged in
  on separate ttys. The following will send a signal requesting that the current
  session be locked and then will initiate a switch to LightDM's greeter,
  allowing a new user to log in to the system.

$ dm-tool switch-to-greeter

Looks promising.

I am another one of those who like to boot to a terminal and then run 
startx (which then runs mate), so this may not apply if you want to boot 
to a DE's login manager, but just to get it out there for those who are 
interested:


My wife, daughter and I each have separate logins on a single box.  On 
the rare occasions that the system gets rebooted, I log on to vt1 and 
run startx (using alias startx='clear; startx -- :0'), my wife logs on 
to vt2 and runs startx (using alias startx='clear; startx -- :1'), and 
my daughter uses vt3 and alias startx='clear; startx -- :2'.  After that 
ctl-alt-f1 gets to my session, ctl-alt-f2 gets to my wife's session and 
ctl-alt-f3 gets to my daughter's session.  All sessions running all the 
time.  The only disadvantage to this is that occasionally a web page 
that my daughter has up will decide that it's time to play music.  Then 
I have to find the offending page and mute it.  Other than that, this 
system has worked for us for years.


Marc



Re: Display multiple virtual consoles on multiple displays

2019-08-22 Thread Michael Stone

On Thu, Aug 22, 2019 at 07:58:51PM +0300, Andrei POPESCU wrote:

It should be possible to run something like

   startx -- :1

to open a second X instance on the virtual console. You have to figure
out how to start the second X on the other display.


It's not that easy with one multiport video card, because you'd have two 
things which each expect to have complete control of the video card. 
With two video cards its a more tractable problem. (Though you'd need to 
manually apportion keyboards & mice.)




Re: Display multiple virtual consoles on multiple displays

2019-08-22 Thread Andrei POPESCU
On Mi, 21 aug 19, 16:01:17, Franklin, Jason wrote:
> Greetings,
> 
> I'm working on a project that requires me to debug a running screen locker.
> 
> Currently, my workflow involves switching between the screen locker and 
> virtual 
> console #1 (/dev/tty1) using Ctrl-Alt-F1 and Ctrl-Alt-F7.  This way, I can 
> interact with the screen locker until I hit a break point.  I then return to 
> the first virtual terminal and step through the code.
> 
> This has been very helpful so far, but it's quite slow!
> 
> I have multiple displays, so it seems natural that I'd want to use one 
> display 
> for the screen locker on F7, and one display for vim and gdb on F1.
> 
> Is this possible?  Is it easy or difficult to achieve?

It should be possible to run something like

startx -- :1

to open a second X instance on the virtual console. You have to figure 
out how to start the second X on the other display.

The man page mentions 'startx -- -layout Multihead'. Seems like the 
'-layout' option might be what you need.

Hope this helps,
Andrei
-- 
http://wiki.debian.org/FAQsFromDebianUser


signature.asc
Description: PGP signature


Re: Display multiple virtual consoles on multiple displays

2019-08-22 Thread Dan Ritter
rhkra...@gmail.com wrote: 
> On Thursday, August 22, 2019 10:08:16 AM Dan Ritter wrote:
> > Franklin, Jason wrote:
> > > Greetings,
> > > 
> > > I'm working on a project that requires me to debug a running screen
> > > locker.
> > > 
> > > Currently, my workflow involves switching between the screen locker and
> > > virtual console #1 (/dev/tty1) using Ctrl-Alt-F1 and Ctrl-Alt-F7.  This
> > > way, I can interact with the screen locker until I hit a break point.  I
> > > then return to the first virtual terminal and step through the code.
> > > 
> > > This has been very helpful so far, but it's quite slow!
> > > 
> > > I have multiple displays, so it seems natural that I'd want to use one
> > > display for the screen locker on F7, and one display for vim and gdb on
> > > F1.
> > > 
> > > Is this possible?  Is it easy or difficult to achieve?
> > 
> > What you want is called multiseat configuration; it assumes that
> > the N monitors are independent, and need to have their own
> > keyboards and mice (though you can fake this with a KVM switch).
> > 
> > Most multiseat configs are X only.
> > 
> > There were two projects to make the VT system multiseat: kmscon
> > and systemd-consoled. Both are defunct, and probably won't work.
> 
> I am an optimist (at least sometimes) ;-)  It seems to me there should be a 
> way to accomplish what you are trying to accomplish.
> 
> Without really having thought this out (or being able to, due to my lack of 
> facile familiarity with virtual machines and such), I wonder if using a VM 
> would give you a way forward -- maybe doing something like:
> 
> Running either vim and gdb or the screen locker (that would require a VM with 
> X capability, which exists, iiuc) in a VM, and then displaying both on the 
> same screen, with, for example, the screen locker in a separate window.  Hmm, 
> I guess I'm not sure that could be done.

No, that's not run by the VT (kernel console) system.

> I guess another thought (maybe somebody mentioned it?) would be to have two 
> separate computers, each with its own monitor and keyboard (or shared with a 
> KVM switch), run the screen locker in one computer, and ssh from the other 
> computer to access vim and gdb on the machine running the screen locker.

Sure. Or, you could wire up an actual serial terminal, or any
random computer with a serial port or a USB-serial converter.

-dsr-



Re: Display multiple virtual consoles on multiple displays

2019-08-22 Thread rhkramer
On Thursday, August 22, 2019 10:08:16 AM Dan Ritter wrote:
> Franklin, Jason wrote:
> > Greetings,
> > 
> > I'm working on a project that requires me to debug a running screen
> > locker.
> > 
> > Currently, my workflow involves switching between the screen locker and
> > virtual console #1 (/dev/tty1) using Ctrl-Alt-F1 and Ctrl-Alt-F7.  This
> > way, I can interact with the screen locker until I hit a break point.  I
> > then return to the first virtual terminal and step through the code.
> > 
> > This has been very helpful so far, but it's quite slow!
> > 
> > I have multiple displays, so it seems natural that I'd want to use one
> > display for the screen locker on F7, and one display for vim and gdb on
> > F1.
> > 
> > Is this possible?  Is it easy or difficult to achieve?
> 
> What you want is called multiseat configuration; it assumes that
> the N monitors are independent, and need to have their own
> keyboards and mice (though you can fake this with a KVM switch).
> 
> Most multiseat configs are X only.
> 
> There were two projects to make the VT system multiseat: kmscon
> and systemd-consoled. Both are defunct, and probably won't work.

I am an optimist (at least sometimes) ;-)  It seems to me there should be a 
way to accomplish what you are trying to accomplish.

Without really having thought this out (or being able to, due to my lack of 
facile familiarity with virtual machines and such), I wonder if using a VM 
would give you a way forward -- maybe doing something like:

Running either vim and gdb or the screen locker (that would require a VM with 
X capability, which exists, iiuc) in a VM, and then displaying both on the 
same screen, with, for example, the screen locker in a separate window.  Hmm, 
I guess I'm not sure that could be done.

Maybe someone else has some suggestions along this line, or some other line.

I guess another thought (maybe somebody mentioned it?) would be to have two 
separate computers, each with its own monitor and keyboard (or shared with a 
KVM switch), run the screen locker in one computer, and ssh from the other 
computer to access vim and gdb on the machine running the screen locker.



Re: Display multiple virtual consoles on multiple displays

2019-08-22 Thread Dan Ritter
Franklin, Jason wrote: 
> Greetings,
> 
> I'm working on a project that requires me to debug a running screen locker.
> 
> Currently, my workflow involves switching between the screen locker and 
> virtual 
> console #1 (/dev/tty1) using Ctrl-Alt-F1 and Ctrl-Alt-F7.  This way, I can 
> interact with the screen locker until I hit a break point.  I then return to 
> the first virtual terminal and step through the code.
> 
> This has been very helpful so far, but it's quite slow!
> 
> I have multiple displays, so it seems natural that I'd want to use one 
> display 
> for the screen locker on F7, and one display for vim and gdb on F1.
> 
> Is this possible?  Is it easy or difficult to achieve?

What you want is called multiseat configuration; it assumes that
the N monitors are independent, and need to have their own
keyboards and mice (though you can fake this with a KVM switch).

Most multiseat configs are X only.

There were two projects to make the VT system multiseat: kmscon
and systemd-consoled. Both are defunct, and probably won't work.

-dsr-



Re: Display multiple virtual consoles on multiple displays

2019-08-21 Thread Michael Stone

On Wed, Aug 21, 2019 at 04:01:17PM -0400, Franklin, Jason wrote:

I'm working on a project that requires me to debug a running screen locker.

Currently, my workflow involves switching between the screen locker and virtual
console #1 (/dev/tty1) using Ctrl-Alt-F1 and Ctrl-Alt-F7.  This way, I can
interact with the screen locker until I hit a break point.  I then return to
the first virtual terminal and step through the code.

This has been very helpful so far, but it's quite slow!

I have multiple displays, so it seems natural that I'd want to use one display
for the screen locker on F7, and one display for vim and gdb on F1.

Is this possible?  Is it easy or difficult to achieve?


Simplest is to ssh from another machine. You also may be able to use 
multiple video cards, but I don't think you can do what you're trying to 
do with multiple monitors attached to one video card.




Display multiple virtual consoles on multiple displays

2019-08-21 Thread Franklin, Jason
Greetings,

I'm working on a project that requires me to debug a running screen locker.

Currently, my workflow involves switching between the screen locker and virtual 
console #1 (/dev/tty1) using Ctrl-Alt-F1 and Ctrl-Alt-F7.  This way, I can 
interact with the screen locker until I hit a break point.  I then return to 
the first virtual terminal and step through the code.

This has been very helpful so far, but it's quite slow!

I have multiple displays, so it seems natural that I'd want to use one display 
for the screen locker on F7, and one display for vim and gdb on F1.

Is this possible?  Is it easy or difficult to achieve?

Thanks,
Jason Franklin




Re: x and virtual consoles

2019-08-06 Thread Ed Neville
On 2019-08-06 10:31-0400, Gene Heskett wrote:
> I did, created a user test, logged in, but when I came back to the 
> machine 10 minutes later, the screen was locked and showing gene as 
> the default login.

dm-tool did work to switch the user. That solves a problem for now. 
Please don't see this as being too picky, but it would be nice for tty 
invoked startx to work like it used to, say if lightdm drops dm-tool at 
some point in the future. ctrl-alt-function keys seems to work in other 
distros, just not debian any longer, something seems different here.

> Getting old isn't for wimps as I'm finding out while looking for some 
> reason to celebrate my 85th in a couple months.  I guess that makes me 
> officially an old fart?

Many, many people failed to make it that far. I wonder what the kernel 
will be like when I get to 85, maybe it will insult me telepathically!

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-06 Thread Gene Heskett
On Tuesday 06 August 2019 09:22:15 Curt wrote:

> On 2019-08-06, deloptes  wrote:
> > Curt wrote:
> >> LightDM's dm-tool command can be used to allow multiple users to be
> >> logged in on separate ttys. The following will send a signal
> >> requesting that the current session be locked and then will
> >> initiate a switch to LightDM's greeter, allowing a new user to log
> >> in to the system.
> >
> > it says multiple users - not the same user
>
> curty@einstein:~/glimmer$ man dm-tool
> 
> switch-to-greeter
>Switch to the greeter suitable for logging into a new
>session.
>
> Says "logging into a new *session*." (emphasis mine).
>
> Let's ask Gene to try it and report back.

I did, created a user test, logged in, but when I came back to the 
machine 10 minutes later, the screen was locked and showing gene as the 
default login.

I've shut it down as I needed to switch cards and boot a stretch that 
works with linuxcnc. But I'm also installing a new upper countershaft 
and bearings for one end of it as a metal spray failed and wrecked the 
bearings. So I bought a new shaft but it had no woodruff key seats cut.
Thats been fun, the shaft is hardened to 60C and carbide tooling is 
dulled instantly.  So I used that tool up trying to EDM the keyway, but 
ran out of broken 1/8" carbide to serve as the electrode. Finally wound 
up with it rigged in my 4 axis gantry, mill and using 3/4" cutoff 
wheels, stacked 4 thick on a dremel arbor being spun by a 1.5 horse 
water cooled motor, at 24k rpms, was able to get it done.

And I'll run the stretch install until a pi4 gets here, if I even get it 
back together before the pi4 arrives. Since new bearings won't be here 
till Thursday late, I'll be Friday pulling those in, then Saturday will 
be wasted putting the spindle back together with new powertwist belting 
hanging down into the drive, then Sunday back to sitting on a very low 
creeper/stool trying to put this shaft back in with belts that may be a 
link short. That involves putting a taperlock hub into the pulley that 
drives those belts, making an even shorter arm allan wrench to tighten 
the taperlock I made because the pulley bore was washed out, and 
tightening that is a multistep process that takes several hours due to 
lack of space to properly run that allen wrench. I can only tighten one 
screw 1/6th turn at time, then rotate to bring the next of 3 screws 
reachable.  But it will be tight enough when done that the lack of a key 
is a never mind. It will not slip.

I haven't over the years, cared for my back all that well, been pushed 
too hard too many times, so 2 crushed disks pinning my sciatic nerves 
isn't fun. Its painfull, and sometimes my legs do not do what my brain 
tells them to, so I may have to kill some time resting to recouperate.

Getting old isn't for wimps as I'm finding out while looking for some 
reason to celebrate my 85th in a couple months.  I guess that makes me 
officially an old fart?

Cheers, Gene Heskett
-- 
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
 - Louis D. Brandeis
Genes Web page 



Re: x and virtual consoles

2019-08-06 Thread David Wright
On Tue 06 Aug 2019 at 07:11:04 (+0100), Ed wrote:
> On 2019-08-05 16:59-0500, David Wright wrote:
> > Perhaps this is all to do with your DM. I use startx, and since
> > stretch the Xserver runs "on top of" the VC that started it, and
> > as the user, not root. In the past, Xservers ran as root on VC7,
> > VC8, …
> 
> Does lightdm or gdm act as your greeter? I have not reproduced this 
> between xsessions started by tty login, only ever the session started by 
> lightdm crashes.

No, I'm afraid I'm a member of Curt's “ineluctable "just use Mutt"”
association, using startx (though I don't see what Mutt has to do with
the price of fish).

One footnote to my comment, though. After posting it, I looked back
at the line in Xsession and noted that nowadays there's a variable
that might be more useful than the date, so I changed it.

ERRFILE=$HOME/.xsession-errors-$XDG_VTNR
will number them by the VC that the Xserver started on. This could
be fragile if you were to be able to start more than one from the same
VC. OTOH it's predictable as it's available before the Xserver starts,
unlike another alternative which is
ERRFILE=$HOME/.xsession-errors-${DISPLAY#:}

Both these have the advantage over date that they are self-cleaning,
getting overwritten in the normal course of events.

> Tried to force a x session on vt8, but that responds with 'Permission 
> denied' when doing that. I think system d sets up the permissions of 
> tty1 when you use that console:
> 
>   crw--- 1 ed   tty 4,  1 2019-08-06 06:57:48 /dev/tty1

I take what the system throws at me. AIUI the user-owner Xserver has
to run on the tty from which it was started, whereas the older
root-owned ones could open tty7, 8, etc. I don't use the latter
any more.

My guess is that you can't run two user-owned Xservers from the *same*
VC, which is why I trust using $XDG_VTNR above. I take it that this
variable is a new Desktop Group thingy, and its newness is why I
wasn't using it already.

Cheers,
David.



Re: x and virtual consoles

2019-08-06 Thread Curt
On 2019-08-06, Curt  wrote:
>>
>> it says multiple users - not the same user
>>
>>
>
> curty@einstein:~/glimmer$ man dm-tool
>
> switch-to-greeter
>Switch to the greeter suitable for logging into a new
>session.
>
> Says "logging into a new *session*." (emphasis mine).
>
> Let's ask Gene to try it and report back.
>

I guess what Ed would want here is one of the following (because it seems
switch-to-greeter indeed won't get it):

 add-nested-seat
Start an X server inside a session and connect it to a display manager.

 add-local-x-seat DISPLAY_NUMBER
Connect an existing X server to the display manager.

 add-seat TYPE [NAME=VALUE...]
Add a dynamic seat.

Apparently poorly documented (like what is TYPE?):

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=849072


-- 
“We are all in the gutter, but some of us are looking at the stars.” 
― Oscar Wilde, Lady Windermere's Fan



Re: x and virtual consoles

2019-08-06 Thread Curt
On 2019-08-06, deloptes  wrote:
> Curt wrote:
>
>> LightDM's dm-tool command can be used to allow multiple users to be logged
>> in on separate ttys. The following will send a signal requesting that the
>> current session be locked and then will initiate a switch to LightDM's
>> greeter, allowing a new user to log in to the system.
>
> it says multiple users - not the same user
>
>

curty@einstein:~/glimmer$ man dm-tool

switch-to-greeter
   Switch to the greeter suitable for logging into a new
   session.

Says "logging into a new *session*." (emphasis mine).

Let's ask Gene to try it and report back.

-- 
“We are all in the gutter, but some of us are looking at the stars.” 
― Oscar Wilde, Lady Windermere's Fan



Re: x and virtual consoles

2019-08-06 Thread deloptes
Curt wrote:

> LightDM's dm-tool command can be used to allow multiple users to be logged
> in on separate ttys. The following will send a signal requesting that the
> current session be locked and then will initiate a switch to LightDM's
> greeter, allowing a new user to log in to the system.

it says multiple users - not the same user



Re: x and virtual consoles

2019-08-06 Thread Curt
On 2019-08-06, Ed  wrote:
> On 2019-08-06 09:02+0300, Andrei POPESCU wrote:
>> On Lu, 05 aug 19, 21:56:55, Ed wrote:
>> > 
>> > How do you run two login managers though so that you can have two users 
>> > share the same computer without having to log out? In other words, 
>> > whilst I go and make dinner I want to allow someone else to sit here, 
>> > without having to shut applications down?
>> 
>> Some login managers have the "switch user" feature.
>
> Does that feature take the user back to the login screen without leaving 
> the applications running?
>


https://wiki.archlinux.org/index.php/LightDM

 LightDM's dm-tool command can be used to allow multiple users to be logged in
 on separate ttys. The following will send a signal requesting that the current
 session be locked and then will initiate a switch to LightDM's greeter,
 allowing a new user to log in to the system.

$ dm-tool switch-to-greeter

Looks promising.

-- 
“We are all in the gutter, but some of us are looking at the stars.” 
― Oscar Wilde, Lady Windermere's Fan



Re: x and virtual consoles

2019-08-06 Thread Ed
On 2019-08-06 09:02+0300, Andrei POPESCU wrote:
> On Lu, 05 aug 19, 21:56:55, Ed wrote:
> > 
> > How do you run two login managers though so that you can have two users 
> > share the same computer without having to log out? In other words, 
> > whilst I go and make dinner I want to allow someone else to sit here, 
> > without having to shut applications down?
> 
> Some login managers have the "switch user" feature.

Does that feature take the user back to the login screen without leaving 
the applications running?

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-06 Thread Ed
On 2019-08-05 16:59-0500, David Wright wrote:
> Perhaps this is all to do with your DM. I use startx, and since
> stretch the Xserver runs "on top of" the VC that started it, and
> as the user, not root. In the past, Xservers ran as root on VC7,
> VC8, …

Does lightdm or gdm act as your greeter? I have not reproduced this 
between xsessions started by tty login, only ever the session started by 
lightdm crashes.

Tried to force a x session on vt8, but that responds with 'Permission 
denied' when doing that. I think system d sets up the permissions of 
tty1 when you use that console:

  crw--- 1 ed   tty 4,  1 2019-08-06 06:57:48 /dev/tty1

[   757.147] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
[   778.512] (II) AIGLX: Suspending AIGLX clients for VT switch
[   786.321] (II) AIGLX: Resuming AIGLX clients after VT switch
[   786.321] (EE) modeset(0): drmSetMaster failed: Invalid argument
[   786.321] (EE) modeset(0): failed to set mode: Permission denied
[   786.321] (EE)
Fatal server error:
[   786.321] (EE) EnterVT failed for screen 0
[   786.321] (EE)
[   786.321] (EE)
Please consult the The X.Org Foundation support
 at http://wiki.x.org
 for help.
[   786.321] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
[   786.321] (EE)
[   786.321] (II) AIGLX: Suspending AIGLX clients for VT switch
[   786.376] (EE) Server terminated with error (1). Closing log file.

To eliminate my actions from this, I tried again without telling startx 
which vt to use, and the error above happened on the *second* switch 
back to vt7.

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-06 Thread Andrei POPESCU
On Lu, 05 aug 19, 21:56:55, Ed wrote:
> 
> How do you run two login managers though so that you can have two users 
> share the same computer without having to log out? In other words, 
> whilst I go and make dinner I want to allow someone else to sit here, 
> without having to shut applications down?

Some login managers have the "switch user" feature.

Kind regards,
Andrei
-- 
http://wiki.debian.org/FAQsFromDebianUser


signature.asc
Description: PGP signature


Re: x and virtual consoles

2019-08-05 Thread David Wright
On Mon 05 Aug 2019 at 21:56:55 (+0100), Ed wrote:
> On 2019-08-05 13:11+0200, deloptes wrote:
> > IMO you can not run multiple X sessions from the same user. I am not 
> > 100% sure, but I can imagine what would happen with the session 
> > manager.
> 
> I have done in the past, one 'ed' would run xfce and another would run 
> evilwm. However, the majority of use would be from 'ed' and a different 
> user account for working from home in.

Sure. This machine is running two X servers as me. As I don't want my
.xsession-errors files to be interleaved, I made one small change to
a system configuration file. In /etc/X11/Xsession I added the line
ERRFILE=$HOME/.xsession-errors-$(/bin/date +%Y%m%d%H%M%S)
but it does mean that I have to sweep them up. I had thought about
distinguishing them by the VC they started on, but haven't got
round to it. Everything else that requires distinguishing uses
$DISPLAY.

> > So if your first session is on vt7 (CTRL) ALT+F7 the next one will be 
> > on
> > (CTRL) ALT+F8.
> 
> This is what I think is expected now if you want tty1 and ctrl-alt-f1 to 
> match:
> 
>   /usr/bin/startx -display :1 -- :1 vt1

Perhaps this is all to do with your DM. I use startx, and since
stretch the Xserver runs "on top of" the VC that started it, and
as the user, not root. In the past, Xservers ran as root on VC7,
VC8, …

> > I have used this only with different users and from the login manager 
> > or
> > from the desktop by starting new user session.
> 
> How do you run two login managers though so that you can have two users 
> share the same computer without having to log out? In other words, 
> whilst I go and make dinner I want to allow someone else to sit here, 
> without having to shut applications down?
> 
> > Doing it from the same user makes no sense IMO. Why would you do this?

Different window managers and desktop configurations. But that's not
the point. It makes no sense to me *not* to be able to do it. It would
be like going back to non-reentrant code when ten instances of emacs
sessions would mean ten executables tying up memory.

> Well, in the weird times when I did, it was a different desktop 
> environment (evilwm for code, xfce for web browsing and mail). Avoids 
> bells and notifications from disturbing me. I'm not doing that these 
> days, now I just don't want to switch user spaces. If it auto-locked, 
> that'd be nice, too, I seem to remember that switching would auto-lock.

Cheers,
David.



Re: x and virtual consoles

2019-08-05 Thread Ed
On 2019-08-05 13:11+0200, deloptes wrote:
> IMO you can not run multiple X sessions from the same user. I am not 
> 100% sure, but I can imagine what would happen with the session 
> manager.

I have done in the past, one 'ed' would run xfce and another would run 
evilwm. However, the majority of use would be from 'ed' and a different 
user account for working from home in.

> So if your first session is on vt7 (CTRL) ALT+F7 the next one will be 
> on
> (CTRL) ALT+F8.

This is what I think is expected now if you want tty1 and ctrl-alt-f1 to 
match:

  /usr/bin/startx -display :1 -- :1 vt1

> I have used this only with different users and from the login manager 
> or
> from the desktop by starting new user session.

How do you run two login managers though so that you can have two users 
share the same computer without having to log out? In other words, 
whilst I go and make dinner I want to allow someone else to sit here, 
without having to shut applications down?

> Doing it from the same user makes no sense IMO. Why would you do this?

Well, in the weird times when I did, it was a different desktop 
environment (evilwm for code, xfce for web browsing and mail). Avoids 
bells and notifications from disturbing me. I'm not doing that these 
days, now I just don't want to switch user spaces. If it auto-locked, 
that'd be nice, too, I seem to remember that switching would auto-lock.

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-05 Thread Ed
On 2019-08-05 09:57-, Curt wrote:
> On 2019-08-04, Ed  wrote:
> > Hello,
> >
> > For years I would happily ctrl-alt-f<1-6> for an additional x.org 
> > session by running 'startx' and another window manager. Until now-ish.
> >
> > What I have observed is that x sessions started from a text console can 
> > cooperate with each other, it seems limited to lightdm/gdm logins only.
> 
> Is this related to this (I can't really understand what you're saying
> here, actually, though everybody else seems to, but what the hell):
> 
> https://bugs.archlinux.org/task/46655

This is seems to be a bug for gnome-terminal, not the x session. But the 
log looks a little familiar.

> https://lists.debian.org/debian-user/2017/10/msg00603.html

This is similar, but not quite as raw as what I experience. I don't have 
to exit one of the x sessions, only start x from tty1 and the greeter 
spawned x will crash.

However, starting an x session on tty1 and then log in on tty2 as 
another user, I can happily switch between tty1 and tty2.

I'll get a log from x tomorrow. I keep wondering if it is down to the 
'-novtswitch' option added to xorg by lightdm. However, these steps at 
the top of the thread will reproduce in a qemu vm, and that uses gdm, 
maybe systemd does something weird with vt7?

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-05 Thread Curt
On 2019-08-05, Felix Miata  wrote:
> Curt composed on 2019-08-05 11:29 (UTC):
>
>> Maybe this is the bug we're looking for:
>
>> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834270
>
>> Fix (Simon says):
>
>>  * removing the call to /usr/bin/clear_console from ~/.bash_logout 
>>  (console is cleared anyway nowadays)
>>  * replacing the call to /usr/bin/clear_console with /usr/bin/reset in 
>>  ~/.bash_logout
>
> That's the bug and workaround I couldn't remember for my  previous reply. I 
> rarely
> login on vtty1 as a habit going back many moons.

Wading through extraneous material until arrival at the relevant log
files, which may reveal some clue, except those are curiously kept under
wraps.


-- 
“We are all in the gutter, but some of us are looking at the stars.” 
― Oscar Wilde, Lady Windermere's Fan



Re: x and virtual consoles

2019-08-05 Thread Ed
On 2019-08-05 11:11-0400, Felix Miata wrote:
> 
> > Fix (Simon says):
> 
> >  * removing the call to /usr/bin/clear_console from ~/.bash_logout 
> >  (console is cleared anyway nowadays)
> >  * replacing the call to /usr/bin/clear_console with /usr/bin/reset in 
> >  ~/.bash_logout

Why would bash_logout be involved thought? Switching vt should not force 
a logout. I can understand it forcing a lock screen, but not a logout, 
surely?

> That's the bug and workaround I couldn't remember for my  previous reply. I 
> rarely
> login on vtty1 as a habit going back many moons.

That didn't solve it for me, unfortunately. I will try again this week 
with a selection of different Debian versions.

To explain a little more about why I used this heavily, my local user 
'ed' would have a normal xfce desktop, whilst my working from home user 
would match the username at $corp for convenience. The rest of the 
family have their own user accounts and we could work in harmony.

What I've found though, is that this issue doesn't occur with 
Elementary. I've not tested with plain Ubuntu. In a way, if the problem 
exists in Ubuntu or one of the other variants then I may have a delta to 
investigate.

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-05 Thread Felix Miata
Curt composed on 2019-08-05 11:29 (UTC):

> Maybe this is the bug we're looking for:

> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834270

> Fix (Simon says):

>  * removing the call to /usr/bin/clear_console from ~/.bash_logout 
>  (console is cleared anyway nowadays)
>  * replacing the call to /usr/bin/clear_console with /usr/bin/reset in 
>  ~/.bash_logout

That's the bug and workaround I couldn't remember for my  previous reply. I 
rarely
login on vtty1 as a habit going back many moons.
-- 
Evolution as taught in public schools is religion, not science.

 Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!

Felix Miata  ***  http://fm.no-ip.com/



Re: x and virtual consoles

2019-08-05 Thread Curt
On 2019-08-04, Ed  wrote:
>
>   1. log in via lightdm/gdm
>   2. switch to a text console
>   3. run startx and use the window manager for a moment or two
>   4. switch back to first session

Maybe this is the bug we're looking for:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834270

Fix (Simon says):

 * removing the call to /usr/bin/clear_console from ~/.bash_logout 
 (console is cleared anyway nowadays)
 * replacing the call to /usr/bin/clear_console with /usr/bin/reset in 
 ~/.bash_logout

-- 
“We are all in the gutter, but some of us are looking at the stars.” 
― Oscar Wilde, Lady Windermere's Fan



Re: x and virtual consoles

2019-08-05 Thread deloptes
Ed wrote:

> For years I would happily ctrl-alt-f<1-6> for an additional x.org
> session by running 'startx' and another window manager. Until now-ish.
> 
> The way to reproduce the problem is as follows:
> 
> 1. log in via lightdm/gdm
> 2. switch to a text console
> 3. run startx and use the window manager for a moment or two
> 4. switch back to first session
> 
> At this point you should be presented with the default login screen
> after the x session crashed.
> 
> What I have observed is that x sessions started from a text console can
> cooperate with each other, it seems limited to lightdm/gdm logins only.
> 
> Something happened between jobs which meant I didn't need to run several
> user accounts at once. It may have been introduced during Jessie or
> Stretch.
> 
> Am I alone, or do other people have this issue also? Am I doing multi
> GUI wrong, is there a modern way to do this that has slipped past me
> without noticing?

IMO you can not run multiple X sessions from the same user. I am not 100%
sure, but I can imagine what would happen with the session manager.

AFAIR if you start a new X session it will take the next virtual available.

So if your first session is on vt7 (CTRL) ALT+F7 the next one will be on
(CTRL) ALT+F8.

I have used this only with different users and from the login manager or
from the desktop by starting new user session.

Doing it from the same user makes no sense IMO. Why would you do this?

regards




Re: x and virtual consoles

2019-08-05 Thread Curt
On 2019-08-04, Ed  wrote:
> Hello,
>
> For years I would happily ctrl-alt-f<1-6> for an additional x.org 
> session by running 'startx' and another window manager. Until now-ish.
>
>
> What I have observed is that x sessions started from a text console can 
> cooperate with each other, it seems limited to lightdm/gdm logins only.

Is this related to this (I can't really understand what you're saying
here, actually, though everybody else seems to, but what the hell):

https://bugs.archlinux.org/task/46655
https://lists.debian.org/debian-user/2017/10/msg00603.html

If not, disregard (there's not really any help in those links I must
admit, either).

> Something happened between jobs which meant I didn't need to run several 
> user accounts at once. It may have been introduced during Jessie or 
> Stretch.
>
> Am I alone, or do other people have this issue also? Am I doing multi 
> GUI wrong, is there a modern way to do this that has slipped past me 
> without noticing?
>


-- 
“We are all in the gutter, but some of us are looking at the stars.” 
― Oscar Wilde, Lady Windermere's Fan



Re: x and virtual consoles

2019-08-05 Thread Ed Neville
On 2019-08-04 20:06-0400, Felix Miata wrote:

> Works on 32 bit Buster on host m7ncd here, with one little glitch that 
> Ctrl-Alt-F3

I've not tried 32bit. I'll get the ISO and give that a whirl.

> memory currently lacks any connective dots between
> https://bugzilla.redhat.com/show_bug.cgi?id=1663050
> and any possible appearance in Debian months ago.

That seems to be a different issue not vt switching from a lightdm/gdm 
spawned X to a tty spawned X crashing the login manager's X.

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-05 Thread Ed
On 2019-08-04 22:54+0100, nektarios wrote:
> Indeed the problem seems reproducible for debian Stretch with sddm 
> display manager.
> The only logs appearing are from KDE applications (nothing in X11 logs):

Could this be systemd? My only thoughts are that systemd starts the x 
server on a vt, but ctrl-alt-f6 doesn't have permission to swtich back 
to the vt. The x process has a '-novtswitch' argument which looks 
suspicious to me. I tried to change that in the lightdm conf, but it 
seems to be appended as an argument to the program (maybe hardcoded).

> Unfortunately my PC even worse gets stuck after that so I cant really 
> tell if X11 is running.
> I hadn't used multiple x sessions for sometime (after I got used to 
> multiple desktops) but this seems an issue.

I think virtualisation replaced a lot of the requirement for most people 
to have two displays running. I find user separation sufficient for most 
working-from-home tasks without needing to store a virtual disk image.

-- 
Best regards,
Ed http://www.s5h.net/



Re: x and virtual consoles

2019-08-04 Thread Felix Miata
Ed composed on 2019-08-04 21:01 (UTC+0100):

> For years I would happily ctrl-alt-f<1-6> for an additional x.org 
> session by running 'startx' and another window manager. Until now-ish.

> The way to reproduce the problem is as follows:

>   1. log in via lightdm/gdm
>   2. switch to a text console
>   3. run startx and use the window manager for a moment or two
>   4. switch back to first session

> At this point you should be presented with the default login screen 
> after the x session crashed.

> What I have observed is that x sessions started from a text console can 
> cooperate with each other, it seems limited to lightdm/gdm logins only.

> Something happened between jobs which meant I didn't need to run several 
> user accounts at once. It may have been introduced during Jessie or 
> Stretch.

> Am I alone, or do other people have this issue also? Am I doing multi 
> GUI wrong, is there a modern way to do this that has slipped past me 
> without noticing?

Works on 32 bit Buster on host m7ncd here, with one little glitch that 
Ctrl-Alt-F3
from vtty4 doesn't get me to the session running on vtty3, but Ctrl-Alt-F2 will
get me to vtty2, from which Ctrl-Alt-F3 does work as expected, as does 
Ctrl-Alt-F4
from the session on vtty3. Wierd.

However, your description I do have memory of from last winter. The problem is 
my
memory currently lacks any connective dots between
https://bugzilla.redhat.com/show_bug.cgi?id=1663050
and any possible appearance in Debian months ago.
-- 
Evolution as taught in public schools is religion, not science.

 Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!

Felix Miata  ***  http://fm.no-ip.com/



Re: x and virtual consoles

2019-08-04 Thread nektarios
On Sun, 4 Aug 2019 18:36:44 -0400
Cindy Sue Causey  wrote:

> On 8/4/19, nektarios  wrote:
> > On Sun, 4 Aug 2019 21:01:57 +0100
> > Ed  wrote:  
> >>
> >> What I have observed is that x sessions started from a text console
> >> can cooperate with each other, it seems limited to lightdm/gdm
> >> logins only.
> >>
> >> Something happened between jobs which meant I didn't need to run
> >> several user accounts at once. It may have been introduced during
> >> Jessie or Stretch.
> >>
> >> Am I alone, or do other people have this issue also? Am I doing
> >> multi GUI wrong, is there a modern way to do this that has slipped
> >> past me without noticing?  
> 
> 
> After sending mine off here, I re-read and thought,, *OH, man, I fully
> missed the point.*
> 
> But I *was* able to get a GUI of *some* sort. I'm on Bullseye with
> xfce4 and ALL that it draws in.
> 
> I've never tried to get anything to interact. It's always about get
> in, un-bork something, and get back out.
> 
> Messaging between the sessions ala the way we were able to with AS/400
> systems mid-1990's comes to mind as a way to test that interaction
> ability. I've come across references to packages that MIGHT do that,
> but I've never had an excuse to download and test drive it/them.
> 
> 
> > Indeed the problem seems reproducible for debian Stretch with sddm
> > display manager.  
> 
> 
> I'll have to give it another shot with those specifics you all are
> saying, but today's definitely not that day *cognitively*. :)
> 
> I've seen where some of you all write about having even more
> minimalist systems than my bare bones debootstraps. I've tried going
> that route and just haven't found something that fits what I need.
> Might just be about adaptation and the lack of being able to do so
> under extreme duress/stress.
> 
> 
> > The only logs appearing are from KDE applications (nothing in X11
> > logs): ```
> > Aug  4 22:40:41 buldozer org.kde.kpasswdserver[958]: The X11
> > connection broke (error 1). Did the X11 server die?
> > Aug  4 22:40:41 buldozer org.kde.kuiserver[958]: kuiserver: Fatal
> > IO error: client killed
> > Aug  4 22:40:41 buldozer org.a11y.atspi.Registry[1251]: XIO:  fatal
> > IO error 11 (Resource temporarily unavailable) on X server ":0"
> > Aug  4 22:40:41 buldozer org.kde.kglobalaccel[958]: The X11
> > connection broke (error 1). Did the X11 server die?
> > Aug  4 22:40:41 buldozer org.a11y.atspi.Registry[1251]:   after
> > 947 requests (947 known processed) with 0 events remaining.
> > Aug  4 22:40:41 buldozer org.kde.KScreen[958]: The X11 connection
> > broke (error 1). Did the X11 server die?
> > ```
> >
> > Unfortunately my PC even worse gets stuck after that so I cant
> > really tell if X11 is running.
> > I hadn't used multiple x sessions for sometime (after I got used to
> > multiple desktops) but this seems an issue.  
> 
> 
> Mine referenced going to ~/.local/share/xorg/* for feedback. That's
> where I did find what appeared to be tinely appropriate for my shot at
> this.
> 
> Started to joke that I'm grateful mine at least didn't do that (get
> stuck), BUT... it DID take it n extra long while to calm down when I
> got back over to F7. That was after I successfully logged in as root
> AND "elf" (instead of "candycane") in full xfce4 graphical interface.
> 
> I'm on extremely limited hardware resources right now. 1GB RAM memory
> so I *a-sumed* that was probably what the momentary hangup was there
> when coming back up after those two success stories occurred.
> 
> I'll have to try doing more of what it sounds like you all are doing.
> I downloaded several different "window managers" (versus "desktop
> environments") just two or three weeks ago but then came back over to
> ol' familiar and friendly Xfce4. Thank you to its Developers!
> 
> I need to order a new hard drive (TODAY, yikes). With this thread in
> mind, I'll create a couple extra partitions dedicated to the "window
> managers" part of this thread when it's time.
> 
> Cindy :)



The xorg log file doesn't seem to have any kind of error in it.
At [1501.620] I start the new session but shows nothing. You can find it
attached.

Nektarios.

Xorg.1.log.old
Description: application/trash


Re: x and virtual consoles

2019-08-04 Thread Cindy Sue Causey
On 8/4/19, nektarios  wrote:
> On Sun, 4 Aug 2019 21:01:57 +0100
> Ed  wrote:
>>
>> What I have observed is that x sessions started from a text console
>> can cooperate with each other, it seems limited to lightdm/gdm logins
>> only.
>>
>> Something happened between jobs which meant I didn't need to run
>> several user accounts at once. It may have been introduced during
>> Jessie or Stretch.
>>
>> Am I alone, or do other people have this issue also? Am I doing multi
>> GUI wrong, is there a modern way to do this that has slipped past me
>> without noticing?


After sending mine off here, I re-read and thought,, *OH, man, I fully
missed the point.*

But I *was* able to get a GUI of *some* sort. I'm on Bullseye with
xfce4 and ALL that it draws in.

I've never tried to get anything to interact. It's always about get
in, un-bork something, and get back out.

Messaging between the sessions ala the way we were able to with AS/400
systems mid-1990's comes to mind as a way to test that interaction
ability. I've come across references to packages that MIGHT do that,
but I've never had an excuse to download and test drive it/them.


> Indeed the problem seems reproducible for debian Stretch with sddm display
> manager.


I'll have to give it another shot with those specifics you all are
saying, but today's definitely not that day *cognitively*. :)

I've seen where some of you all write about having even more
minimalist systems than my bare bones debootstraps. I've tried going
that route and just haven't found something that fits what I need.
Might just be about adaptation and the lack of being able to do so
under extreme duress/stress.


> The only logs appearing are from KDE applications (nothing in X11 logs):
> ```
> Aug  4 22:40:41 buldozer org.kde.kpasswdserver[958]: The X11 connection
> broke (error 1). Did the X11 server die?
> Aug  4 22:40:41 buldozer org.kde.kuiserver[958]: kuiserver: Fatal IO error:
> client killed
> Aug  4 22:40:41 buldozer org.a11y.atspi.Registry[1251]: XIO:  fatal IO error
> 11 (Resource temporarily unavailable) on X server ":0"
> Aug  4 22:40:41 buldozer org.kde.kglobalaccel[958]: The X11 connection broke
> (error 1). Did the X11 server die?
> Aug  4 22:40:41 buldozer org.a11y.atspi.Registry[1251]:   after 947
> requests (947 known processed) with 0 events remaining.
> Aug  4 22:40:41 buldozer org.kde.KScreen[958]: The X11 connection broke
> (error 1). Did the X11 server die?
> ```
>
> Unfortunately my PC even worse gets stuck after that so I cant really tell
> if X11 is running.
> I hadn't used multiple x sessions for sometime (after I got used to multiple
> desktops) but this seems an issue.


Mine referenced going to ~/.local/share/xorg/* for feedback. That's
where I did find what appeared to be tinely appropriate for my shot at
this.

Started to joke that I'm grateful mine at least didn't do that (get
stuck), BUT... it DID take it n extra long while to calm down when I
got back over to F7. That was after I successfully logged in as root
AND "elf" (instead of "candycane") in full xfce4 graphical interface.

I'm on extremely limited hardware resources right now. 1GB RAM memory
so I *a-sumed* that was probably what the momentary hangup was there
when coming back up after those two success stories occurred.

I'll have to try doing more of what it sounds like you all are doing.
I downloaded several different "window managers" (versus "desktop
environments") just two or three weeks ago but then came back over to
ol' familiar and friendly Xfce4. Thank you to its Developers!

I need to order a new hard drive (TODAY, yikes). With this thread in
mind, I'll create a couple extra partitions dedicated to the "window
managers" part of this thread when it's time.

Cindy :)
-- 
Cindy-Sue Causey
Talking Rock, Pickens County, Georgia, USA

* runs with birdseed *



Re: x and virtual consoles

2019-08-04 Thread Cindy Sue Causey
On 8/4/19, Ed  wrote:
> For years I would happily ctrl-alt-f<1-6> for an additional x.org
> session by running 'startx' and another window manager. Until now-ish.
>
> The way to reproduce the problem is as follows:
>
>   1. log in via lightdm/gdm
>   2. switch to a text console
>   3. run startx and use the window manager for a moment or two
>   4. switch back to first session
>
> At this point you should be presented with the default login screen
> after the x session crashed.
>
> What I have observed is that x sessions started from a text console can
> cooperate with each other, it seems limited to lightdm/gdm logins only.
>
> Something happened between jobs which meant I didn't need to run several
> user accounts at once. It may have been introduced during Jessie or
> Stretch.
>
> Am I alone, or do other people have this issue also? Am I doing multi
> GUI wrong, is there a modern way to do this that has slipped past me
> without noticing?


Hi, Ed.. Am not having the bestest of "cognitive" days (so the tech
aspect is just out of reach overhead), but I can comment a little. I
remember being able to have two full graphical sessions running, each
on a different [console]. I tried to do it a few months ago because of
some reason I actually needed it finally... and it didn't work.

It didn't work just now, either. It crashed again. The blurb that I
caught and that I could still remember while switching between
consoles was that it would send feedback to
~/.local/share/xorg/Xorg.1.log.

If that's true, it ends with:

"Server terminated successfully (0). Closing log file."

Successfully? Maybe it just means that it didn't hang permanently and
that it closed out without leaving any loose ends. The date stamp on
that file is appropriate for when I just tried it.

Then I got to thinking.. I next tried root and a different regular
user account, and both worked fine. Maybe I'm just remembering wrong
about past experiences.

It's possible I never tried to open two sessions of the *same* User
until very recently. If I did go that second console route for any
real purpose, it would have most likely been about accessing root for
a few seconds for whatever reason. That would explain why my memory is
that things always worked.

The first time I ever would have tried it at all would have been out
of curiosity as to whether or not two graphical interfaces were even
possible at the same time... since there ARE additional consoles just
hanging around doing nothin'. :)

Kind of make sense that it would, maybe should crash for the same
User. Seems like being signed in as the same person twice might,
likely would cause conflicts of some kind. Maybe there's a "lockfile"
situation of some type keeping the same User from signing in twice?

OR NOT. :)

Have fun!

Cindy :)
-- 
Cindy-Sue Causey
Talking Rock, Pickens County, Georgia, USA

* runs with birdseed *



Re: x and virtual consoles

2019-08-04 Thread nektarios
On Sun, 4 Aug 2019 21:01:57 +0100
Ed  wrote:

> Hello,
> 
> For years I would happily ctrl-alt-f<1-6> for an additional x.org 
> session by running 'startx' and another window manager. Until now-ish.
> 
> The way to reproduce the problem is as follows:
> 
>   1. log in via lightdm/gdm
>   2. switch to a text console
>   3. run startx and use the window manager for a moment or two
>   4. switch back to first session
> 
> At this point you should be presented with the default login screen 
> after the x session crashed.
> 
> What I have observed is that x sessions started from a text console
> can cooperate with each other, it seems limited to lightdm/gdm logins
> only.
> 
> Something happened between jobs which meant I didn't need to run
> several user accounts at once. It may have been introduced during
> Jessie or Stretch.
> 
> Am I alone, or do other people have this issue also? Am I doing multi 
> GUI wrong, is there a modern way to do this that has slipped past me 
> without noticing?
> 

Indeed the problem seems reproducible for debian Stretch with sddm display 
manager.
The only logs appearing are from KDE applications (nothing in X11 logs):
```
Aug  4 22:40:41 buldozer org.kde.kpasswdserver[958]: The X11 connection broke 
(error 1). Did the X11 server die?
Aug  4 22:40:41 buldozer org.kde.kuiserver[958]: kuiserver: Fatal IO error: 
client killed
Aug  4 22:40:41 buldozer org.a11y.atspi.Registry[1251]: XIO:  fatal IO error 11 
(Resource temporarily unavailable) on X server ":0"
Aug  4 22:40:41 buldozer org.kde.kglobalaccel[958]: The X11 connection broke 
(error 1). Did the X11 server die?
Aug  4 22:40:41 buldozer org.a11y.atspi.Registry[1251]:   after 947 
requests (947 known processed) with 0 events remaining.
Aug  4 22:40:41 buldozer org.kde.KScreen[958]: The X11 connection broke (error 
1). Did the X11 server die?
```

Unfortunately my PC even worse gets stuck after that so I cant really tell if 
X11 is running.
I hadn't used multiple x sessions for sometime (after I got used to multiple 
desktops) but this seems an issue. 



x and virtual consoles

2019-08-04 Thread Ed
Hello,

For years I would happily ctrl-alt-f<1-6> for an additional x.org 
session by running 'startx' and another window manager. Until now-ish.

The way to reproduce the problem is as follows:

  1. log in via lightdm/gdm
  2. switch to a text console
  3. run startx and use the window manager for a moment or two
  4. switch back to first session

At this point you should be presented with the default login screen 
after the x session crashed.

What I have observed is that x sessions started from a text console can 
cooperate with each other, it seems limited to lightdm/gdm logins only.

Something happened between jobs which meant I didn't need to run several 
user accounts at once. It may have been introduced during Jessie or 
Stretch.

Am I alone, or do other people have this issue also? Am I doing multi 
GUI wrong, is there a modern way to do this that has slipped past me 
without noticing?

-- 
Best regards,
Ed http://www.s5h.net/



Re: [solved] Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Rodolfo Medina
Greg Wooledge <wool...@eeg.ccf.org> writes:

> On Tue, Jun 20, 2017 at 05:32:09PM +0100, Rodolfo Medina wrote:
>> Greg Wooledge <wool...@eeg.ccf.org> writes:
>> > Once more, from the top:
>> >
>> > 1) ~/.bash_profile should source ~/.bashrc
>> > 2) Shell functions and aliases and shopts and sets and other transient
>> >settings should go in ~/.bashrc
>> > 3) Environment variables and other NON-transient settings should go in
>> >~/.bash_profile
>
>> My alias:
>> 
>>  alias mplayer='mplayer -demuxer lavf'
>> 
>> works, for tty* consoles, if I put it in ~/.bash_profile.  Instead, if I put
>> it in ~/.bashrc, it doesn't work within tty* but only within graphical
>> system.
>
> Refer to step 1.  Make sure ~/.bash_profile sources ~/.bashrc.
>
> Debian provides a ~/.profile by default in jessie and stretch, so
> ~/.bash_profile is either something you wrote, or something you
> inherited from an older system.
>
> Make ~/.bash_profile source ~/.bashrc.
>
> If you need help with that, you can paste the code from /etc/skel/.profile
> starting with "# if running bash" and ending with the second "fi" line
> which follows that comment.
>
> ~/.bash_profile must source ~/.bashrc


Sorry, at the beginning I hadn't given enough importance to your recommendation
that ~/.bash_profile should source ~/.bashrc.  Now I put my alias in ~/bashrc,
then at the beginning of ~/.bash_profile I put:

# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi

and everything is fine: the alias is also active in tty* consoles.  I hope now
I understood and did correctly.

Thanks, Regards

Rodolfo



Re: [solved] Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Greg Wooledge
On Tue, Jun 20, 2017 at 05:32:09PM +0100, Rodolfo Medina wrote:
> Greg Wooledge <wool...@eeg.ccf.org> writes:
> > Once more, from the top:
> >
> > 1) ~/.bash_profile should source ~/.bashrc
> > 2) Shell functions and aliases and shopts and sets and other transient
> >settings should go in ~/.bashrc
> > 3) Environment variables and other NON-transient settings should go in
> >~/.bash_profile

> My alias:
> 
>  alias mplayer='mplayer -demuxer lavf'
> 
> works, for tty* consoles, if I put it in ~/.bash_profile.  Instead, if I put 
> it
> in ~/.bashrc, it doesn't work within tty* but only within graphical system.

Refer to step 1.  Make sure ~/.bash_profile sources ~/.bashrc.

Debian provides a ~/.profile by default in jessie and stretch, so
~/.bash_profile is either something you wrote, or something you
inherited from an older system.

Make ~/.bash_profile source ~/.bashrc.

If you need help with that, you can paste the code from /etc/skel/.profile
starting with "# if running bash" and ending with the second "fi" line
which follows that comment.

~/.bash_profile must source ~/.bashrc



Re: [solved] Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Rodolfo Medina
Greg Wooledge <wool...@eeg.ccf.org> writes:

> On Tue, Jun 20, 2017 at 04:43:25PM +0100, Rodolfo Medina wrote:
>> According to what you say, I solved my problem by putting my aliases in
>> ~/.bash_profile rather than in ~/.bash_aliases.  I don't know if it's
>> correct, but it works.
>
> It's not correct, because that file WON'T be read by regular shells.
> It's only read by login shells.
>
> Once more, from the top:
>
> 1) ~/.bash_profile should source ~/.bashrc
> 2) Shell functions and aliases and shopts and sets and other transient
>settings should go in ~/.bashrc
> 3) Environment variables and other NON-transient settings should go in
>~/.bash_profile
>
> Substitute ~/.profile for ~/.bash_profile if necessary.  This is the file
> that is only read once.
>
> Substitute ~/.bash_aliases for ~/.bashrc if necessary.  This is the file
> that is read by every new instance of the shell.


My alias:

 alias mplayer='mplayer -demuxer lavf'

works, for tty* consoles, if I put it in ~/.bash_profile.  Instead, if I put it
in ~/.bashrc, it doesn't work within tty* but only within graphical system.

Rodolfo



Re: [solved] Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Greg Wooledge
On Tue, Jun 20, 2017 at 04:43:25PM +0100, Rodolfo Medina wrote:
> According to what you say, I solved my problem by putting my aliases in
> ~/.bash_profile rather than in ~/.bash_aliases.  I don't know if it's correct,
> but it works.

It's not correct, because that file WON'T be read by regular shells.
It's only read by login shells.

Once more, from the top:

1) ~/.bash_profile should source ~/.bashrc
2) Shell functions and aliases and shopts and sets and other transient
   settings should go in ~/.bashrc
3) Environment variables and other NON-transient settings should go in
   ~/.bash_profile

Substitute ~/.profile for ~/.bash_profile if necessary.  This is the file
that is only read once.

Substitute ~/.bash_aliases for ~/.bashrc if necessary.  This is the file
that is read by every new instance of the shell.



[solved] Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Rodolfo Medina
Greg Wooledge  writes:

> On Tue, Jun 20, 2017 at 04:06:24PM +0100, Rodolfo Medina wrote:
>> I settle down permamnent bash aliases by simply putting them in the file
>> ~/.bash_aliases; but they only work within X environment.  Is it possible,
>> and how?, to make them work also in tty1, tty2, ..., i.e. out of graphical
>> surround?
>
> Shell aliases and functions should be declared in ~/.bashrc or in a file
> that you source from ~/.bashrc.  Some people like to create a ~/.bash_aliases
> and source that from ~/.bashrc -- that's fine.  Sounds like you are doing
> that.
>
> The other step is that you need to ensure ~/.bashrc gets sourced from
> your login profile, so that it gets picked up by ALL interactive shells
> (login and non-login).  If you have a ~/.bash_profile or ~/.bash_login,
> make sure you source ~/.bashrc from there.  Otherwise, if you don't
> have those, make sure you source it from ~/.profile.
>
> When you login on a text console, you get a login shell, which reads
> ~/.bash_profile or ~/.bash_login or ~/.profile but not ~/.bashrc.
> (Which is why you need that extra source step.)
>
> When you run a terminal emulator within an X session, you *typically*
> get a non-login shell, which reads ~/.bashrc only.


According to what you say, I solved my problem by putting my aliases in
~/.bash_profile rather than in ~/.bash_aliases.  I don't know if it's correct,
but it works.

Thanks,

Rodolfo



Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Greg Wooledge
On Tue, Jun 20, 2017 at 11:36:17AM -0400, Felix Miata wrote:
> Greg Wooledge composed on 2017-06-20 11:14 (UTC-0400):
> > When you run a terminal emulator within an X session, you *typically*
> > get a non-login shell, which reads ~/.bashrc only.
> .
> Interesting. Which WM(s)/DE(s) do/does that apply to?

Depends on the config, and the terminal emulator as well.  A standard
WM menu should simply run the terminal emulator (e.g. urxvt) with
no options, which will then run a regular (non-login) shell.

However, some people configure their WMs to launch their terminals with
the "-ls" or equivalent option, which forces a login shell.  This is
common in academic environments, for example.  I think the rationale is
that it makes life simpler for non-sophisticated users, who will just
put their aliases in whatever dot file they happen to stumble across;
forcing a login shell means *all* the dot files get read, so they get
fewer support calls.



Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Felix Miata
Greg Wooledge composed on 2017-06-20 11:14 (UTC-0400):

> When you login on a text console, you get a login shell, which reads
> ~/.bash_profile or ~/.bash_login or ~/.profile but not ~/.bashrc.
> (Which is why you need that extra source step.)

> When you run a terminal emulator within an X session, you *typically*
> get a non-login shell, which reads ~/.bashrc only.
.
Interesting. Which WM(s)/DE(s) do/does that apply to? 'alias | wc -l' produces
same result here whether in vtty or in Konsole, whether root (53) or ordinary
user (22), my self-created aliases are all in ~/.bashrc, and except for
(non-existent) /etc/bashrc I have no reference to any other startup or other
script in ~/.bashrc.
-- 
"The wise are known for their understanding, and pleasant
words are persuasive." Proverbs 16:21 (New Living Translation)

 Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!

Felix Miata  ***  http://fm.no-ip.com/



Re: Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Greg Wooledge
On Tue, Jun 20, 2017 at 04:06:24PM +0100, Rodolfo Medina wrote:
> I settle down permamnent bash aliases by simply putting them in the file
> ~/.bash_aliases; but they only work within X environment.  Is it possible, and
> how?, to make them work also in tty1, tty2, ..., i.e. out of graphical
> surround?

Shell aliases and functions should be declared in ~/.bashrc or in a file
that you source from ~/.bashrc.  Some people like to create a ~/.bash_aliases
and source that from ~/.bashrc -- that's fine.  Sounds like you are doing
that.

The other step is that you need to ensure ~/.bashrc gets sourced from
your login profile, so that it gets picked up by ALL interactive shells
(login and non-login).  If you have a ~/.bash_profile or ~/.bash_login,
make sure you source ~/.bashrc from there.  Otherwise, if you don't
have those, make sure you source it from ~/.profile.

When you login on a text console, you get a login shell, which reads
~/.bash_profile or ~/.bash_login or ~/.profile but not ~/.bashrc.
(Which is why you need that extra source step.)

When you run a terminal emulator within an X session, you *typically*
get a non-login shell, which reads ~/.bashrc only.



Setting up aliases to work also in tty* consoles?

2017-06-20 Thread Rodolfo Medina
Hi all.

I settle down permamnent bash aliases by simply putting them in the file
~/.bash_aliases; but they only work within X environment.  Is it possible, and
how?, to make them work also in tty1, tty2, ..., i.e. out of graphical
surround?

Thanks for any help,

Rodolfo



Re: only one user with access to vt consoles in multiseat set ups ...

2016-08-04 Thread Albretch Mueller
 Also, something important to me is for each seat to be able to go
into init 5 under its own locale

 Say, one seat would be running under a French locale and the other
one a German one.

 lbrtchx



only one user with access to vt consoles in multiseat set ups ...

2016-08-04 Thread Albretch Mueller
 I would like to know the reason for the following note:
~
 https://wiki.debian.org/Multi_Seat_Debian_HOWTO

 NOTE: Only the user on the first monitor has the use of vt consoles
and can use Ctrl+Alt+F to select them. The other users have a gdm
login screen and can use X normally, but have no vt's.
~
 I teach java and at times I need for my students to have access to the console

 Is this because of the graphical interface being used? Kernel config issues?

 lbrtchx
 debian-user



Re: What's with the blue overlining in text consoles?

2013-07-16 Thread Chris Bannister

[Please don't top post on this mailing list]

On Sun, Jul 14, 2013 at 05:10:18PM +0200, commandline wrote:
 Never heard of something similar to start with. Few guesses.
 
 * Terminal Emulation ?
   Check what happens if you switch from say xterm to linux to vt100 to ...

Stephen did say when used in a text console (vt1-vt6) and 
The problem does not seem to occur in a Gnome Terminal window, only 
on a text console.

 I'd suggest you make a backup of the current files, then proceed

Which files in particular?

 with tests. If it still fails proceed to reinstall the packages.

Which tests are you suggesting? And why would you need to reinstall the
packages?


-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130716072146.GB17167@tal



What's with the blue overlining in text consoles? [SOLVED]

2013-07-15 Thread Stephen Powell
On Sun, 14 Jul 2013 11:10:18 -0400 (EDT), commandl...@telenet.be wrote:
 
 On 13/07/13 21:55, Stephen Powell wrote:
 
 Something strange has started happening recently.  For a long time I have
 used ISO-8859-1 as my character mapping in text consoles.

 dpkg-reconfigure console-setup

 and I have had no difficulty, except when using the ssh client to connect
 to a remote system which uses UTF-8.  The box-drawing characters sent by
 the remote system did not look right under these conditions.  To solve this
 problem, I switched my local system to use UTF-8.  Now the box-drawing
 characters sent by the remote system look right when displayed by my
 local ssh client.  However, I recently began noticing that all blue fields
 are now overlined.  For example, the lynx web browser, when used in a
 text console (vt1-vt6), displays emphasized fields (the em.../em html
 tag) as blue overlined, when it used to display them simply as blue.

 I can live with that, I suppose.  But what really bothers me is when I
 use the c3270 text-mode 3270 terminal emulator to logon to a mainframe.
 All blue fields are now overlined!  This is driving me batty!  I tried
 searching the world wide web using search words of

 blue overlining UTF-8

 but did not obtain any useful results.  Does anyone know the cause of this?
 Does anyone know the cure?  Is this a bug?  If so, in what package is the
 bug?  The problem does not seem to occur in a Gnome Terminal window, only
 on a text console.  My system locale is en_US.UTF-8.  I am running an
 up-to-date Jessie system on i386 architecture.
 
 Never heard of something similar to start with.  Few guesses.
 
 * Terminal Emulation?
   Check what happens if you switch from say xterm to linux to vt100 to ...
 
 * Character map error?
   Might be for some reason the charmap is damaged?  Did you edit them at 
 one point?  Of would someone else have access to them?
 
 I'd suggest you make a backup of the current files, then proceed with 
 tests.  If it still fails proceed to reinstall the packages. Then check 
 again...
 
 Do you mix the repo with Wheezy or unstable?  This might at times cause 
 quite unique weirdness.

Thank you for your reply, but please don't top post.  I took the liberty of
reformatting this post in the bottom posting / interleaving style.

Well, after a lot of trial-and-error experimentation, I have found the culprit.
It's the video BIOS.  This video BIOS supports eleven hardware text modes,
as documented below:

hex mode id screen size   character cell
(vga=ask)   (text columns x   size (horiz pixels
text rows)x vert pixels)

F00 80x25 9x16
F01 80x50 9x8
F02 80x43 8x8
F03 80x28 9x14
F05 80x30 9x16
F06 80x34 9x14
F07 80x60 9x8
121 100x259x16
122 100x309x16
123 132x258x16
133 132x448x8

Of these eleven hardware text video modes, ten of them work fine.  That is, blue
fields appear without overlining.  One of them is defective.  Mode id 0x122,
for 100 text columns by 30 text rows, displays blue fields with overlining.
And that's the one I was using.  Coincidentally, I switched from 80x34 to
100x30 shortly after I switched from ISO-8859-1 character mapping to UTF-8
character mapping.  The overlining of blue fields had nothing to do with the
switch to UTF-8.  It just appeared to be related because the video mode switch
occurred at about the same time.  The video BIOS apparently does not set up
the VGA registers correctly for video mode id 0x122.  But it does for all the
other text video modes.  The solution (actually a circumvention) is to choose
a different video mode.  Problem solved.  For those of you who are interested,
here is the information I have been able to obtain about my video chipset
and BIOS:

The video chipset is listed by lspci -nn as follows:

05:03.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
[AMD/ATI] Rage XL PCI [1002:4752] (rev 27)

The video chip is built-in to the motherboard; so it's video BIOS is built-in 
to the
motherboard too.

/var/log/Xorg.0.log shows the following information about the video BIOS:

MACH64(0): Primary V_BIOS segment is: 0xc000
...
MACH64(0): VESA BIOS detected
MACH64(0): VESA VBE Version 2.0
MACH64(0): VESA VBE Total Mem: 8128 kB
MACH64(0): VESA VBE OEM: ATI MACH64
MACH64(0): VESA VBE OEM Software Rev: 1.0
MACH64(0): VESA VBE OEM Vendor: ATI Technologies Inc.
MACH64(0): VESA VBE OEM Product: MACH64GM
MACH64(0): VESA VBE OEM Product Rev: 01.00

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive

Re: What's with the blue overlining in text consoles?

2013-07-14 Thread commandline

Never heard of something similar to start with. Few guesses.

* Terminal Emulation ?
Check what happens if you switch from say xterm to linux to vt100 to ...

* Character map error ?
	Might be for some reason the charmap is damaged ? Did you edit them at 
one point ? Of would someone else have access to them ?


I'd suggest you make a backup of the current files, then proceed with 
tests. If it still fails proceed to reinstall the packages. Then check 
again...


Do you mix the repo with Wheezy or unstable ? This might at times cause 
quite unique weirdness.




On 13/07/13 21:55, Stephen Powell wrote:

Something strange has started happening recently.  For a long time I have
used ISO-8859-1 as my character mapping in text consoles.

dpkg-reconfigure console-setup

and I have had no difficulty, except when using the ssh client to connect
to a remote system which uses UTF-8.  The box-drawing characters sent by
the remote system did not look right under these conditions.  To solve this
problem, I switched my local system to use UTF-8.  Now the box-drawing
characters sent by the remote system look right when displayed by my
local ssh client.  However, I recently began noticing that all blue fields
are now overlined.  For example, the lynx web browser, when used in a
text console (vt1-vt6), displays emphasized fields (the em.../em html
tag) as blue overlined, when it used to display them simply as blue.

I can live with that, I suppose.  But what really bothers me is when I
use the c3270 text-mode 3270 terminal emulator to logon to a mainframe.
All blue fields are now overlined!  This is driving me batty!  I tried
searching the world wide web using search words of

blue overlining UTF-8

but did not obtain any useful results.  Does anyone know the cause of this?
Does anyone know the cure?  Is this a bug?  If so, in what package is the
bug?  The problem does not seem to occur in a Gnome Terminal window, only
on a text console.  My system locale is en_US.UTF-8.  I am running an
up-to-date Jessie system on i386 architecture.




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/51e2bf5a.2080...@telenet.be



What's with the blue overlining in text consoles?

2013-07-13 Thread Stephen Powell
Something strange has started happening recently.  For a long time I have
used ISO-8859-1 as my character mapping in text consoles.

   dpkg-reconfigure console-setup

and I have had no difficulty, except when using the ssh client to connect
to a remote system which uses UTF-8.  The box-drawing characters sent by
the remote system did not look right under these conditions.  To solve this
problem, I switched my local system to use UTF-8.  Now the box-drawing
characters sent by the remote system look right when displayed by my
local ssh client.  However, I recently began noticing that all blue fields
are now overlined.  For example, the lynx web browser, when used in a
text console (vt1-vt6), displays emphasized fields (the em.../em html
tag) as blue overlined, when it used to display them simply as blue.

I can live with that, I suppose.  But what really bothers me is when I
use the c3270 text-mode 3270 terminal emulator to logon to a mainframe.
All blue fields are now overlined!  This is driving me batty!  I tried
searching the world wide web using search words of

   blue overlining UTF-8

but did not obtain any useful results.  Does anyone know the cause of this?
Does anyone know the cure?  Is this a bug?  If so, in what package is the
bug?  The problem does not seem to occur in a Gnome Terminal window, only
on a text console.  My system locale is en_US.UTF-8.  I am running an
up-to-date Jessie system on i386 architecture.

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1182082504.2151649.1373745348517.javamail.r...@md01.wow.synacor.com



Re: couleur des consoles

2013-03-14 Thread Jérôme
Le mercredi 13 mars 2013 à 20:16 +0100, Bzzz a écrit :
 Une solution intéressante serait d'avoir un capteur
 de luminosité avec des seuils de changements pour
 avoir différentes couleurs par paliers.
 
En X ça se fait parfois avec la webcam, itou pour les 
OS concurrent.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/1363246577.7270.1.camel@azuki.aranha



Re: couleur des consoles

2013-03-14 Thread Bzzz
On Thu, 14 Mar 2013 08:36:17 +0100
Jérôme jer...@aranha.fr wrote:

 En X ça se fait parfois avec la webcam, itou pour les 
 OS concurrent.
 
Ça n'est pas idiot, encore faut-il que l'automatisme
d'exposition soit débrayable; mais c'est pô mal: on 
évite un énième capteur.

-- 
Miss: Au fait les filles vous avez pris quoi comme couleur
  pour le spectacle de danse?
Lol@: Je me suis fait en bleu
Clar: Moi je me suis fait rose
* Jadzia a rejoint le chat
Miss: Moi je me suis fait violer ;)
Jadzia: O_O 
Miss: Bah je vois pas le problème
Jadzia: O_O

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130314090028.6945e082@anubis.defcon1



Re: couleur des consoles

2013-03-14 Thread admini

Le 13/03/2013 20:29, Jean-Michel OLTRA a écrit :

 Bonjour,


Le mercredi 13 mars 2013, Bernard Schoenacker a écrit...



serait il possible de donner le code couleur pour le fond mauve?

J'ai mis ça, dans mon ~/.Xresources :

URxvt*background: #9857AF

Il paraît que j'ai un goût de chiottes pour les couleurs.


ouarfff !!! mais il explose les yeux ton fond !

je connaissait un type, il mettait du gris sombre sur du noir avec la 
luminosité au minimum. l'objectif n'est pas de finir aveugle à 30 
ans(c'est plutôt une conséquence inévitable, mais je connais un autre 
moyen d'en arriver là avec du mauve ), mais de garantir la sécurité. 
il ne voulait surtout pas qu'on regarde ses lignes de commande.
et pour couronner le tout, il passe son clavier en qwerty(3 quart des 
admins unix le font), et il efface les lettres des touches avec un 
cutter( là, c'est déjà plus rare)


il est évident que ses mails n'ait aucun accent, et qu'il est un dieu de 
sendmail.


cela étant, je suis quand même surpris du nombre replies d'un tel poste.

il est vrai qu'il faut adapter en fonction de son environnement. dans un 
datacenter où, très souvent, c'est du néon blanc écrasant, je passe en 
blanc sur noir pour un contraste maximum.


dans mon bureau, néon jaune tamisé, et un peu de surf sur gogole, noir 
sur #BBBA9F. j'ai tester du blanc sur noir une journée. vers 17h en 
hier, je voyais mes lignes de commande sur le gueule de mon chef de service.


--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/51418eb0.3010...@freeatome.com



Re: couleur des consoles

2013-03-14 Thread moi-meme
Le Wed, 13 Mar 2013 22:30:02 +0100, Bzzz a écrit :

 espeak -v mb-us2 -f $1 | mbrola -t 1.33 -f 0.7
 /usr/share/mbrola/voices/us2 - -.au | aplay

ou en français :
espeak -vmb-fr1 -s 150 -p 45 un texte un peu plus long | mbrola -e fr2/
fr2 - - | aplay -r16550 -fS16  /dev/null

mais je n'arrive pas à changer le timbre de voix en changeant le fichier 
mbrola.

espeak est pas terrible mais il fonctionne c'est la solution la moins 
pire.

Et puis point final : je veux porter sur Raspberry Pi mais pas de portage 
mbrola sur cette architecture (seules les voix y sont).

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/51419060$0$1856$426a3...@news.free.fr



Re: couleur des consoles

2013-03-14 Thread Jean-Michel OLTRA

Bonjour,


Le jeudi 14 mars 2013, admini a écrit...


 et pour couronner le tout, il passe son clavier en qwerty(3 quart des
 admins unix le font), et il efface les lettres des touches avec un
 cutter( là, c'est déjà plus rare)

Je suis en qwerty, et une partie de mes touches sont effacées par
l'usage ! Mais je suis capable d'écrire avec des accents.

-- 
jm

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130314111552.GC30302@espinasse



couleur des consoles

2013-03-13 Thread admini

bonjour la liste

je voudrais lancer un sujet plus light, mais qui a son importance.

je passe environ 6 à 10 heures par jour sur des consoles en ligne de 
commande. et depuis de nombreuses années. j'ai testé toutes les versions 
de couleurs:

gris/noir, gris/bleu marin, bleu/gris, orange claire/noir ...

et vous, quel sont selon vous, les meilleurs couples pour reposer les yeux?

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/51407e4c.7080...@freeatome.com



Re: couleur des consoles

2013-03-13 Thread daniel huhardeaux

Le 13/03/2013 14:25, admini a écrit :

bonjour la liste

je voudrais lancer un sujet plus light, mais qui a son importance.

je passe environ 6 à 10 heures par jour sur des consoles en ligne de 
commande. et depuis de nombreuses années. j'ai testé toutes les 
versions de couleurs:

gris/noir, gris/bleu marin, bleu/gris, orange claire/noir ...

et vous, quel sont selon vous, les meilleurs couples pour reposer les 
yeux?




Pour moi gris~noir sur fond jaune pâle.

--
Daniel

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/51408087.9010...@tootai.net



Re: couleur des consoles

2013-03-13 Thread Sébastien NOBILI
Le mercredi 13 mars 2013 à 14:25, admini a écrit :
 je voudrais lancer un sujet plus light, mais qui a son importance.

Quelle audace, nous déranger pour des broutilles !

 je passe environ 6 à 10 heures par jour sur des consoles en ligne de
 commande. et depuis de nombreuses années. j'ai testé toutes les
 versions de couleurs:
 gris/noir, gris/bleu marin, bleu/gris, orange claire/noir ...
 
 et vous, quel sont selon vous, les meilleurs couples pour reposer les yeux?

Sans avis objectif concernant l'impact sur les yeux, je suis plus à l'aise en
fond noir et texte gris. Ça n'est que la base puisque le prompt de mon shell est
coloré et mon VI (en édition de code) aussi.

Seb

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313134452.gf7...@sebian.nob900.homeip.net



Re: couleur des consoles

2013-03-13 Thread juke
On Wed, Mar 13, 2013 at 02:25:32PM +0100, admini wrote:
 et vous, quel sont selon vous, les meilleurs couples pour reposer les yeux?

J'aime le theme zenburn pour differents logiciels. 

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313135110.gh29...@test.porcinet.eu



Re: couleur des consoles

2013-03-13 Thread Jean-Michel OLTRA

Bonjour,


Le mercredi 13 mars 2013, admini a écrit...


 je voudrais lancer un sujet plus light, mais qui a son importance.

 et vous, quel sont selon vous, les meilleurs couples pour reposer les yeux?

J'utilise du blanc sur fond mauve !! C'est un peu spécial, la première
fois…

-- 
jm

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313140221.GB24068@espinasse



Re: couleur des consoles

2013-03-13 Thread Raphaël POITEVIN
Bonjour,
admini adm...@freeatome.com writes:

 et vous, quel sont selon vous, les meilleurs couples pour reposer les
 yeux?

Le Braille + vocal. :)

Raphaël

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87wqtbjssk.fsf@mozart.musiciens



Re: couleur des consoles

2013-03-13 Thread Sylvain L. Sauvage
Le mercredi 13 mars 2013 à 14:25:32, admini a écrit :
 bonjour la liste

’jour,

 je voudrais lancer un sujet plus light, mais qui a son
 importance.
 
 je passe environ 6 à 10 heures par jour sur des consoles en
 ligne de commande. et depuis de nombreuses années. j'ai
 testé toutes les versions de couleurs:
 gris/noir, gris/bleu marin, bleu/gris, orange claire/noir
 ...
 
 et vous, quel sont selon vous, les meilleurs couples pour
 reposer les yeux?

  Ça dépend : il ne peut pas y avoir de réponse absolue.

  Ça dépend notamment de l’éclairage ambient.

  En ce qui concerne les couleurs, il (me) faut une bonne 
différence entre les couleurs (contraste) tout en restant peu 
agressif.

  Il faut bien différencier les couleurs, sinon à quoi sert la 
coloration syntaxique ?

  Il ne faut pas trop de contraste pour éviter la fatigue (vert 
fluo sur noir, c’est rigolo 5 min ; ambre sur noir, c’est bien 
plus reposant).

  Il faut aussi rester assez proche des seize couleurs standard 
pour conserver le « sens commun » utilisé par certaines 
applications (p.ex. rouge = alerte ou important ; vert = ok).

  Il ne faut pas hésiter à changer en cours de journée, suivant 
l’éclairage ou l’utilisation.

  En ce moment, j’utilise un thème copié du thème dichromacy 
d’Emacs (prétendument étudié pour les daltoniens (je sais pas si 
ça marche, je ne le suis pas)), sur fond blanc ou ivoire pour 
les écrans peu lumineux sous un éclairage ambient de jour, sur 
fond noir sous un éclairage plus sombre ou un écran plus (trop) 
lumineux.

  À mon avis, les thèmes à la « solarized », à la mode, ne 
différencient pas assez les couleurs.

-- 
 Sylvain Sauvage

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/201303131512.02126.sylvain.l.sauv...@free.fr



Re: couleur des consoles

2013-03-13 Thread Vincent Lefevre
On 2013-03-13 14:25:32 +0100, admini wrote:
 je passe environ 6 à 10 heures par jour sur des consoles en ligne de
 commande. et depuis de nombreuses années. j'ai testé toutes les versions de
 couleurs:
 gris/noir, gris/bleu marin, bleu/gris, orange claire/noir ...
 
 et vous, quel sont selon vous, les meilleurs couples pour reposer les yeux?

J'ai un fond noir avec diverses couleurs (gris pour le texte normal).

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313141415.ga29...@xvii.vinc17.org



Re: couleur des consoles

2013-03-13 Thread juke
On Wed, Mar 13, 2013 at 03:08:59PM +0100, Raphaël POITEVIN wrote:
 Le Braille + vocal. :)

ça pourrait etre interessant d'avoir une tablette Braille, je ne sais pas du
tout si c'est possible mais j'imagine bien un systeme ou je deplace ma main
droite sur une tablette à coté du trackball pour lire certaines notifications.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313142620.gj29...@test.porcinet.eu



Re: couleur des consoles

2013-03-13 Thread Bernard Schoenacker
Le Wed, 13 Mar 2013 15:08:59 +0100,
raphael.poite...@gmail.com (Raphaël POITEVIN) a écrit :

 Bonjour,
 admini adm...@freeatome.com writes:
 
  et vous, quel sont selon vous, les meilleurs couples pour reposer
  les yeux?
 
 Le Braille + vocal. :)
 
 Raphaël
 
bonjour,

serait il possible d'être plus disert concernant la synthèse
vocale de la parole ?

j'essaye de m'escrimer dessus avec cowsay et espeak afin d'avoir
les fortunes en mode vocal ...

slt
bernard

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130313165430.27692010.bernard.schoenac...@free.fr



Re: couleur des consoles

2013-03-13 Thread Bzzz
On Wed, 13 Mar 2013 14:44:52 +0100
Sébastien NOBILI sebnewslet...@free.fr wrote:

 Sans avis objectif concernant l'impact sur les yeux, je suis plus à
 l'aise en fond noir et texte gris. Ça n'est que la base puisque le
 prompt de mon shell est coloré et mon VI (en édition de code) aussi.

Pareil, comme je travaille surtout la nuit, c'est bcp
plus reposant.

-- 
Management is not responsible for loss or damage.

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313162322.18d7907a@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread Bzzz
On Wed, 13 Mar 2013 15:02:21 +0100
Jean-Michel OLTRA jm.oltra.antis...@espinasse.net wrote:

 J'utilise du blanc sur fond mauve !! C'est un peu spécial, la première
 fois…
 
Ancien utilisateur de TurboC sans doute?

-- 
Ginger snap.

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313162414.7613dded@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread Jean-Michel OLTRA

Bonjour,


Le mercredi 13 mars 2013, Bzzz a écrit...


  J'utilise du blanc sur fond mauve !! C'est un peu spécial, la première
  fois…

 Ancien utilisateur de TurboC sans doute?

Non. C'est un copain, qui, un jour, m'a dit que blanc sur fond noir ça
faisait tristounet, alors on a cherché des choses plus gaies !

-- 
jm

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313170841.GC24068@espinasse



Re: couleur des consoles

2013-03-13 Thread Vincent Lefevre
On 2013-03-13 18:08:42 +0100, Jean-Michel OLTRA wrote:
 Non. C'est un copain, qui, un jour, m'a dit que blanc sur fond noir ça
 faisait tristounet, alors on a cherché des choses plus gaies !

Sur le noir, il suffit de mettre plein de couleurs!

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313171107.ga11...@xvii.vinc17.org



Re: couleur des consoles

2013-03-13 Thread Bzzz
On Wed, 13 Mar 2013 18:08:42 +0100
Jean-Michel OLTRA jm.oltra.antis...@espinasse.net wrote:

 Non. C'est un copain, qui, un jour, m'a dit que blanc sur fond noir ça
 faisait tristounet, alors on a cherché des choses plus gaies !
 
Je vois, tu es devenu plus gay ;-)

-- 
Madison's Inquiry:
If you have to travel on the Titanic, why not go first class?

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313172707.05e1f969@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread Bernard Schoenacker
Le Wed, 13 Mar 2013 18:08:42 +0100,
Jean-Michel OLTRA jm.oltra.antis...@espinasse.net a écrit :

 
 Bonjour,
 
 
 Le mercredi 13 mars 2013, Bzzz a écrit...
 
 
   J'utilise du blanc sur fond mauve !! C'est un peu spécial, la
   première fois…
 
  Ancien utilisateur de TurboC sans doute?
 
 Non. C'est un copain, qui, un jour, m'a dit que blanc sur fond noir ça
 faisait tristounet, alors on a cherché des choses plus gaies !
 
bonjour,

serait il possible de donner le code couleur pour le fond mauve?

slt
bernard

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130313183427.524c2a71.bernard.schoenac...@free.fr



Re : couleur des consoles

2013-03-13 Thread nicolas . patrois
Le 13/03/2013 18:34:27, Bernard Schoenacker a écrit :

 bonjour,

   serait il possible de donner le code couleur pour le fond
 mauve?

Ansi color codes dans Gogole image :

http://softwarelivre.org/articles/0040/0610/ansi-color-demo.png

nicolas patrois : pts noir asocial
-- 
RÉALISME

M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des 
humains ? Un cerveau plus gros ?
P : Non... Une carte bleue suffirait...

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/1363197349.21664...@new-host-2.home



Re: couleur des consoles

2013-03-13 Thread Jean-Michel OLTRA

Bonjour,


Le mercredi 13 mars 2013, Bernard Schoenacker a écrit...


   serait il possible de donner le code couleur pour le fond mauve?

J'ai mis ça, dans mon ~/.Xresources :

URxvt*background: #9857AF

Il paraît que j'ai un goût de chiottes pour les couleurs.

-- 
jm

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313192929.GE24068@espinasse



Re: couleur des consoles

2013-03-13 Thread honeyshell
bonsoir,
Je suis sur le terminal surtout le soir après une journée à coder sur un
IDE, et tout comme JM je suis en blanc sur fond mauve.
Ca fait gay, effectivement, mais pour les yeux c'est plus reposant.
Varier les couleurs dans la journée, c'est surement la solution aussi ;)

honey#


Re: couleur des consoles

2013-03-13 Thread Bzzz
On Wed, 13 Mar 2013 20:51:37 +0100
honeyshell honeysh...@honeyshell.com wrote:

 Je suis sur le terminal surtout le soir après une journée à coder sur
 un IDE, et tout comme JM je suis en blanc sur fond mauve.
 Ca fait gay, effectivement, mais pour les yeux c'est plus reposant.
 Varier les couleurs dans la journée, c'est surement la solution
 aussi ;)

Il existe aussi une charte (sèpulnom) pour html qui 
associe les couleurs qui tranchent le plus les unes
sur autres(un peu criarde d'ailleurs).

Une solution intéressante serait d'avoir un capteur
de luminosité avec des seuils de changements pour
avoir différentes couleurs par paliers.

-- 
colin p_bit_stream-buffer |=((u32) *(p_bit_stream-byte_stream.p_byte++))
colin  (24 - p_bit_stream-i_available);
colin psychopathes

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313201610.6bbbd09b@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread moi-meme
Le Wed, 13 Mar 2013 17:00:02 +0100, Bernard Schoenacker a écrit :

   j'essaye de m'escrimer dessus avec cowsay et espeak afin d'avoir 
les
   fortunes en mode vocal ...

avec mbrola les voix sont meilleures.
Jamais réussi à faire marcher avec espeak avec un pipe

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/5140e88f$0$2278$426a3...@news.free.fr



Re: couleur des consoles

2013-03-13 Thread Bzzz
On 13 Mar 2013 20:58:55 GMT
moi-meme chie...@free.fr wrote:

 avec mbrola les voix sont meilleures.
 Jamais réussi à faire marcher avec espeak avec un pipe

espeak -v mb-us2 -f $1 | mbrola -t 1.33 -f 0.7 /usr/share/mbrola/voices/us2 
- -.au | aplay

-- 
Meuuh mais putain de bordel de chiottes de bite à cul de merde de sa race
Dnumgis I think it may be a good thing that i don't understand that
  sentence fully

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313212504.27556e47@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread Raphaël POITEVIN
j...@free.fr writes:

 ça pourrait etre interessant d'avoir une tablette Braille, je ne sais pas du
 tout si c'est possible mais j'imagine bien un systeme ou je deplace ma main
 droite sur une tablette à coté du trackball pour lire certaines notifications.

En même temps, vu le prix des afficheurs Braille ... En plus, souris +
Braille, ce n'est pas le top et il faut bien mâitriser le Braille pour
que ça soit intéressant.

Raphaël

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87fvzzj571.fsf@mozart.musiciens



Re: couleur des consoles

2013-03-13 Thread Raphaël POITEVIN
Bernard Schoenacker bernard.schoenac...@free.fr writes:

   serait il possible d'être plus disert concernant la synthèse
   vocale de la parole ?

   j'essaye de m'escrimer dessus avec cowsay et espeak afin d'avoir
   les fortunes en mode vocal ...

Je ne connais pas !

J'utilise IBMTTS, espeak est horrible ! Je m'en sers avec Emacs et son
module speechd-el.

Raphaël

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87boamkjih.fsf@mozart.musiciens



Re: couleur des consoles

2013-03-13 Thread Bzzz
On Wed, 13 Mar 2013 23:44:06 +0100
raphael.poite...@gmail.com (Raphaël POITEVIN) wrote:

 J'utilise IBMTTS, espeak est horrible ! Je m'en sers avec Emacs et son
 module speechd-el.

Tu devrais tester quand même Rafe, dans le cas
dont on parle, espeak est uniquement utilisé
pour générer la partie phonèmes et c'est MBrola
qui prend le relais pour le final.

La combinaison, comme beaucoup de tts, a quelques
petites lacunes. De mémoire, un exemple: première
où le e final est beaucoup trop court.
Mais la qualité vole des kilomètres plus haut
qu'avec espeak tout seul.

-- 
Aga le meilleur moyen pour aller a la gare c'est quoi ?
Tobeornottobe le train

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313230628.4b3eeb46@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread Raphaël POITEVIN
Bzzz lazyvi...@gmx.com writes:

 Tu devrais tester quand même Rafe, dans le cas
 dont on parle, espeak est uniquement utilisé
 pour générer la partie phonèmes et c'est MBrola
 qui prend le relais pour le final.

Déjà testé !

 La combinaison, comme beaucoup de tts, a quelques
 petites lacunes. De mémoire, un exemple: première
 où le e final est beaucoup trop court.
 Mais la qualité vole des kilomètres plus haut
 qu'avec espeak tout seul.

Le problème, c'est que dans notre cas, on l'utilise tout le temps, de
façon dynamique, avec des applications type Emacs. Donc, on passe par le
serveur speech-dispatcher, qui attaque le moteur TTS. Le problème que
j'ai avec espeak + mbrola, c'ets que ce n'es pas assez flexible, trop
lourd, pas moyen de stopper la voix de façon brutale.

Le plus intéressant reste encore le moteur festival + mbrola, mais
difficile à maîtriser et comporte des petits bugs qui me gênent'. Enfin,
il faudrait que je retente.

Actuellement, je tente de bosser sur une vieille synthèse vocale qui
avait été conçue sur carte, réécrite sous Windows en C++. J'ai réussi à
la porter sous GNU/Linux, mais il manque encore la partie pour
l'utiliser avec speech-dispatcher et la sortie son. La voix est très
robotique, mais elle est très légère et tout à fait' audible. Il reste
de nombreuses tâches à faire que je ne maîtrise pas bien côté
développement, d'ailleures, si quelqu'un veut m'aider, avec grand
plaisir. Il faut que jeprenne le temps aussi de voir les démarches à
faire pour la mettre sous GPL avant de la soumettre à tout le monde ; je
connais le développeur d'origine, il m'a tout doné et est tout à fait
d'accord.

Raphaël

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87y5dqj11j.fsf@mozart.musiciens



Re: couleur des consoles

2013-03-13 Thread Bzzz
On Thu, 14 Mar 2013 01:08:24 +0100
raphael.poite...@gmail.com (Raphaël POITEVIN) wrote:

 Le plus intéressant reste encore le moteur festival + mbrola, mais
 difficile à maîtriser et comporte des petits bugs qui me gênent'.
 Enfin, il faudrait que je retente.

De ce que j'ai pu retirer de pas mal de tests, c'est
que la partie cruciale est le générateur de phonèmes.
C'est lui qui fait la différence; c'est très audible
quand on génère des fichiers audio à partir de fichiers
de phonèmes bien faits ou en écoutant les fichiers
exemples disponibles sur le site de MBrola.

-- 
DanaKil si au moins, j'avais un chien, je pourrai le sortir
DanaKil pis je l'appellerai Dulo, ça me permettrait
  de sortir un peu dulo pour une fois

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130314012552.48dc4370@anubis.defcon1



Re: couleur des consoles

2013-03-13 Thread Anthony Bourguignon
Le mercredi 13 mars 2013 à 14:25 +0100, admini a écrit :
 bonjour la liste
 
 je voudrais lancer un sujet plus light, mais qui a son importance.
 
 je passe environ 6 à 10 heures par jour sur des consoles en ligne de 
 commande. et depuis de nombreuses années. j'ai testé toutes les versions 
 de couleurs:
 gris/noir, gris/bleu marin, bleu/gris, orange claire/noir ...
 
 et vous, quel sont selon vous, les meilleurs couples pour reposer les yeux?

Définitivement solarized avec la police terminus.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/1363232787.395.1.ca...@jen.toniob.net



Re: OT: Consoles de joc amb soft lliure?

2012-12-22 Thread Joan
Ostres, fa molt bona pinta (independentment de que pensi que els nens ja 
tenen prou TV/ordinador), però realment els preus (sobre els 540€, o 280 
per la versió més antiga), son per pensar-s'ho... (ara bé, les nintendo, 
pel que se, costen uns 150€ més 40€ per joc ;-) ).


Joan Cervan

Al 18/12/12 22:12, En/na Eloi Notario ha escrit:

A Diumenge, 16 de desembre de 2012 21:47:32, Joan va escriure:
   

Continuant amb els OT... Avui la meva sogra m'ha dit que havien pensat
comprar-li al meu fill una consola (ella no hi entén, però en nano
demana... no sé si fa referència a aquelles que es connecten a la TV o
les que son portàtils... jo tampoc hi entenc gaire, ja ho veieu... pd.:
li he preguntat a la carta als reis n'ha posat de tota mena...).

Total, fa temps havia mirat per curiositat si existien trastos d'aquesta
mena en soft lliure, i em penso que algo hi havia... Algú està
actualitzat i te alguna experiència??
 

En el seu dia em vaig mirar el projecte GP2X però no em va acabar de fer el
pes: era una mica car, pel que deien les bateries duraven més aviat poc, i
s'havien de demanar a Corea del Sud. Ara veig, però, que hi ha una nova
versió anomenada Pandora [1] però els preus espanten una mica [2].

[1] http://www.open-pandora.org/
[2] https://www.dragonbox.de/en/27-main-consoles-and-upgrades


   



--

Joan Cervan i Andreu
http://personal.calbasi.net

El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des 
del meu lloc, als pocs valors sense els quals un món no val la pena viure'l
A. Camus

i pels que teniu fe:
Déu no és la Veritat, la Veritat és Déu
Gandhi


--
To UNSUBSCRIBE, email to debian-user-catalan-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50d5b07e.2020...@calbasi.net



Re: OT: Consoles de joc amb soft lliure?

2012-12-18 Thread Eloi Notario
A Diumenge, 16 de desembre de 2012 21:47:32, Joan va escriure:
 Continuant amb els OT... Avui la meva sogra m'ha dit que havien pensat
 comprar-li al meu fill una consola (ella no hi entén, però en nano
 demana... no sé si fa referència a aquelles que es connecten a la TV o
 les que son portàtils... jo tampoc hi entenc gaire, ja ho veieu... pd.:
 li he preguntat a la carta als reis n'ha posat de tota mena...).
 
 Total, fa temps havia mirat per curiositat si existien trastos d'aquesta
 mena en soft lliure, i em penso que algo hi havia... Algú està
 actualitzat i te alguna experiència??

En el seu dia em vaig mirar el projecte GP2X però no em va acabar de fer el 
pes: era una mica car, pel que deien les bateries duraven més aviat poc, i 
s'havien de demanar a Corea del Sud. Ara veig, però, que hi ha una nova 
versió anomenada Pandora [1] però els preus espanten una mica [2].

[1] http://www.open-pandora.org/
[2] https://www.dragonbox.de/en/27-main-consoles-and-upgrades


--
To UNSUBSCRIBE, email to debian-user-catalan-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201212182212.14956.entfe...@gmail.com



Re: OT: Consoles de joc amb soft lliure?

2012-12-17 Thread Joan
He trobat això... No és la panacea, però està feta per Android i sembla 
que costarà uns 120€ transport inclòs:


http://www.ouya.tv/

Fins ara,

Joan

Al 16/12/12 21:47, En/na Joan ha escrit:
Continuant amb els OT... Avui la meva sogra m'ha dit que havien pensat 
comprar-li al meu fill una consola (ella no hi entén, però en nano 
demana... no sé si fa referència a aquelles que es connecten a la TV o 
les que son portàtils... jo tampoc hi entenc gaire, ja ho veieu... 
pd.: li he preguntat a la carta als reis n'ha posat de tota mena...).


Total, fa temps havia mirat per curiositat si existien trastos 
d'aquesta mena en soft lliure, i em penso que algo hi havia... Algú 
està actualitzat i te alguna experiència??


Joan Cervan

Al 15/12/12 13:57, En/na ilion1...@gmail.com ha escrit:

EL Fri, 14 Dec 2012 12:43:48 +0100
Eduard Selmase...@tinet.cat  escrigué:


A més d'off-topic, segurament aquesta pregunta us semblarà ingènua.

Vull comprar-me una tauleta tàctil (tablet) d'entre 7 i 9 polzades i
voldria assegurar-me que el S. O. estigui en català. He anat a una
botiga del ram i m'han dit, després de consultar-ho amb un parell de
subministradors, que d'això res, que ha de ser en castellà (i els hi
ha semblat una pregunta molt exòtica: ningú els la havia fet abans).

Sé que en un dispositiu ARM s'hi pot instal·lar una Debian, si cal,
però de moment ja m'aniria bé amb un Android en català.

Em podeu donar alguna pista? (s'admet publicitat)

Bones festes i perdoneu l'OT.

Eduard Selma.

A no ser que siguis un super geek treu-te del cap tenir una tablet
amb linux. Això només està a l'abast de gent amb molts coneixements i
fins i tot en el cas de poder-lo instalŀlar es possible que no sigui
funcional en un 100%.

L'opció més semblant seria android el qual inclou el català, però això
no vol dir que necessàriament tots els dispositius l'incloguin ja que
molts fabricants customitzen l'android i com uns werts o
miniwerts qualsevol li treuen el català. Per assegurar-te passat per
grans centres comercials i proba els tablets que tenen expossats, no et
costarà massa trobar l'opció de configuració per veure quines llengües
porta aquell tablet.

Jo finalment vaig optar per una opció molt econòmica (ho faig servir
com a agenda i lector de documents bàsicament, el que feia amb la
difunta Pocket PC) comprant l'abril passat un tablet de la marca
bq de 7 polzades per poc més de 100 euros, són de Madrid però com a
mínim quan jo el vaig comprar incloïa el català. Per assegurar-te els
pots provar al Media Markt o al FNAC (allà els tenen amb la seva propia
marca però realment són bq).

També hauries de tenir clar que el millor android s'assembla a un i-pad
igual que un ou a una castanya, es a dir res a veure.
Sens dubte i-pad és el tablet amb majúscules però jo no els penso
comprar mai res perquè detesto Apple com empresa.

Sobre tot busca i abans proba i molta sort

Ferran











--

Joan Cervan i Andreu
http://personal.calbasi.net

El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des 
del meu lloc, als pocs valors sense els quals un món no val la pena viure'l
A. Camus

i pels que teniu fe:
Déu no és la Veritat, la Veritat és Déu
Gandhi


--
To UNSUBSCRIBE, email to debian-user-catalan-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50cf4e36.3070...@calbasi.net



Re: OT: Consoles de joc amb soft lliure?

2012-12-16 Thread Joan
Continuant amb els OT... Avui la meva sogra m'ha dit que havien pensat 
comprar-li al meu fill una consola (ella no hi entén, però en nano 
demana... no sé si fa referència a aquelles que es connecten a la TV o 
les que son portàtils... jo tampoc hi entenc gaire, ja ho veieu... pd.: 
li he preguntat a la carta als reis n'ha posat de tota mena...).


Total, fa temps havia mirat per curiositat si existien trastos d'aquesta 
mena en soft lliure, i em penso que algo hi havia... Algú està 
actualitzat i te alguna experiència??


Joan Cervan

Al 15/12/12 13:57, En/na ilion1...@gmail.com ha escrit:

EL Fri, 14 Dec 2012 12:43:48 +0100
Eduard Selmase...@tinet.cat  escrigué:

   

A més d'off-topic, segurament aquesta pregunta us semblarà ingènua.

Vull comprar-me una tauleta tàctil (tablet) d'entre 7 i 9 polzades i
voldria assegurar-me que el S. O. estigui en català. He anat a una
botiga del ram i m'han dit, després de consultar-ho amb un parell de
subministradors, que d'això res, que ha de ser en castellà (i els hi
ha semblat una pregunta molt exòtica: ningú els la havia fet abans).

Sé que en un dispositiu ARM s'hi pot instal·lar una Debian, si cal,
però de moment ja m'aniria bé amb un Android en català.

Em podeu donar alguna pista? (s'admet publicitat)

Bones festes i perdoneu l'OT.

Eduard Selma.
 

A no ser que siguis un super geek treu-te del cap tenir una tablet
amb linux. Això només està a l'abast de gent amb molts coneixements i
fins i tot en el cas de poder-lo instalŀlar es possible que no sigui
funcional en un 100%.

L'opció més semblant seria android el qual inclou el català, però això
no vol dir que necessàriament tots els dispositius l'incloguin ja que
molts fabricants customitzen l'android i com uns werts o
miniwerts qualsevol li treuen el català. Per assegurar-te passat per
grans centres comercials i proba els tablets que tenen expossats, no et
costarà massa trobar l'opció de configuració per veure quines llengües
porta aquell tablet.

Jo finalment vaig optar per una opció molt econòmica (ho faig servir
com a agenda i lector de documents bàsicament, el que feia amb la
difunta Pocket PC) comprant l'abril passat un tablet de la marca
bq de 7 polzades per poc més de 100 euros, són de Madrid però com a
mínim quan jo el vaig comprar incloïa el català. Per assegurar-te els
pots provar al Media Markt o al FNAC (allà els tenen amb la seva propia
marca però realment són bq).

També hauries de tenir clar que el millor android s'assembla a un i-pad
igual que un ou a una castanya, es a dir res a veure.
Sens dubte i-pad és el tablet amb majúscules però jo no els penso
comprar mai res perquè detesto Apple com empresa.

Sobre tot busca i abans proba i molta sort

Ferran





   



--

Joan Cervan i Andreu
http://personal.calbasi.net

El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des 
del meu lloc, als pocs valors sense els quals un món no val la pena viure'l
A. Camus

i pels que teniu fe:
Déu no és la Veritat, la Veritat és Déu
Gandhi


--
To UNSUBSCRIBE, email to debian-user-catalan-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50ce3364.3030...@calbasi.net



Re: Graphic-Card-Resolution in GUI affects blanking virtual-consoles(tty1 etc.)

2012-11-21 Thread Herbert Schwarzer

 Yeah, but why does it take several seconds? 
 Have you tried another DE/WM combination? 
 So, really in fact, you want to run KDE at a higher resolution than what   
 your card is capable of?

I don't know why the virtual consoles go BLANK only after about 20 seconds,
it seems to be a problem with the graphics mode  the graphics resolution.
In fact, after a very fresh Debian-Installation (Sqeeze / Wheezy anyway ...)
the virtual-console had a  very,very,very tiny type face  AND the graphics 
resolution within X (KDE) was automaticly choosen at 1600x1200 dpi.
A use a Nvidia GTX 210 card and this video mode is the highest available mode.
At this mode on my CRT-monitor this video-mode is not good to my eyes :)
so I chose another (less higher) resolution.
I did not realize the problem with the blanking virtual terminal at once !
(cause of not regularly using the virtual console).
When recognizing the problem I thought this occurs at any mode - not until 
after a few experiments I found out the relation between the graphic-
resolution:
1600x1200  o.k.  also for the tty1 - tty6
lower than 1600x1200   NOT o.k.

kindly 
Herbert


Re: Graphic-Card-Resolution in GUI affects blanking virtual-consoles (tty1 etc.)

2012-11-19 Thread Chris Bannister
On Sun, Nov 18, 2012 at 05:58:38PM +0100, Herbert Schwarzer wrote:
 
 Following issue occurs (in both flavours Squeeze as well as Wheezy):
 Running amd64 KDE-Environment.
 It does not matter running nouveau-graphics-driver or nvidia-graphics-driver 
 (the Debian way ...)
 If I switch from KDE-GUI (tty7) to virtual-consoles (tty1 .. tty6) and login 
 in text-mode -- after a few seconds, theese virtual-consoles will go BLANK.

A few seconds? That is weird. What happens if you start in single user
mode and login as root?

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121119123357.GB6095@tal



Re: Graphic-Card-Resolution in GUI affects blanking virtual-consoles(tty1 etc.)

2012-11-19 Thread Herbert Schwarzer

Hello Chris,

perhaps I do not understand your proposal ...  if I switch to runlevel=1 
(that's the single user mode, isn't it?)  there is no X running, so I can 
login as root only in text-mode (console).
X (or graphical user interface such as KDE) is only available at runlevel 2 up 
to runlevel 6.
So again: no matter wich user is logged in KDE - the virtual console blanks IF 
there is another graphic-card resolution than the (automaticly choosen 
1600x1200).

greetings 
Herbert 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201211192157.03935.herbert.schwar...@aon.at



Re: Graphic-Card-Resolution in GUI affects blanking virtual-consoles(tty1 etc.)

2012-11-19 Thread Chris Bannister
On Mon, Nov 19, 2012 at 09:57:03PM +0100, Herbert Schwarzer wrote:
 
 Hello Chris,
 
 perhaps I do not understand your proposal ...  if I switch to runlevel=1 
 (that's the single user mode, isn't it?)  there is no X running, so I can 
 login as root only in text-mode (console).

Correct. That should rule out non running software.

 X (or graphical user interface such as KDE) is only available at runlevel 2 
 up 
 to runlevel 6.
 So again: no matter wich user is logged in KDE - the virtual console blanks 
 IF 
 there is another graphic-card resolution than the (automaticly choosen 
 1600x1200).

Yeah, but why does it take several seconds?

Have you tried another DE/WM combination?

So, really in fact, you want to run KDE at a higher resolution than what
your card is capable of?


-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121120033120.GB4413@tal



Graphic-Card-Resolution in GUI affects blanking virtual-consoles (tty1 etc.)

2012-11-18 Thread Herbert Schwarzer

Following issue occurs (in both flavours Squeeze as well as Wheezy):
Running amd64 KDE-Environment.
It does not matter running nouveau-graphics-driver or nvidia-graphics-driver 
(the Debian way ...)
If I switch from KDE-GUI (tty7) to virtual-consoles (tty1 .. tty6) and login 
in text-mode -- after a few seconds, theese virtual-consoles will go BLANK.
The past year I've read a lot of online-doc's maybe concerning this problem,
but theese articles may not hit the core issue I believe.
For me now it seems to be clear:
Only if the graphics-card-resolution is left as standard (in my case this 
seems to be 1600x1200) then a switch to tty1-6 does not affect in blanking 
virtual consoles - ONLY if I change the resolution to a lower value (ie. 
1400x1050  or other ones ...)  the issue of 'blank virtual consoles' occurs.

So this is not a heavy problem, because one can say: it only makes the 
virtual-console quiet unusable - why use it ??
Well, sometimes I  WANT use vt's !

Any idea ?

greetings
Herbert


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/201211181758.38428.herbert_schwar...@hotmail.com



Re: virtual consoles

2012-10-06 Thread james gray
Thanks Mike , that is a bit thick for me.

On Thu, Oct 4, 2012 at 11:38 AM, Mike McClain mike.j...@nethere.com wrote:

 Howdy,
 On Thu, Oct 04, 2012 at 03:38:14PM +0100, Darac Marjal wrote:
  On Thu, Oct 04, 2012 at 07:08:49AM -0700, james gray wrote:
  Does any one know of - info source to set up virtual consoles in the
  network install of Debian Squeeze 6.0???
 snip
 
  OK. You've been following a bit of a red-herring there, but that's only
  to be expected. Virtual Terminals, themselves are controlled by the
  kernel, but most relevant is the program that runs on the virtual
  terminal and asks for your login details. This is called a getty and
  is configured in /etc/inittab. You should see a series of lines such
  as:
 
  1:2345:respawn:/sbin/getty 38400 tty1
  2:23:respawn:/sbin/getty 38400 tty2
  3:23:respawn:/sbin/getty 38400 tty3
  4:23:respawn:/sbin/getty 38400 tty4
  5:23:respawn:/sbin/getty 38400 tty5
  6:23:respawn:/sbin/getty 38400 tty6
 

 In addition to the excellent advice Darac gave if you're runnung
 without a GUi and don't want to have to login to each VT take a look
 at openvt.
 my /etc/inittab contains these lines:

 #   one vt for root and one for mike.
 1:2345:respawn:/sbin/getty 38400 tty1
 4:23:respawn:/sbin/getty 38400 tty4

 # Action on special keypress (ALT-UpArrow).
 # sudo needed unless NOPASSWD:ALL   in /etc/sudoers?
 kb::kbrequest:$( [ id -u -eq 0 ]  /bin/openvt -su ||
 sudo /bin/openvt -su)

 This line allows me to open vts with a single keystroke without logging in
 to each one.

 HTH,
 Mike
 --
 Satisfied user of Linux since 1997.
 O ascii ribbon campaign - stop html mail - www.asciiribbon.org


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/20121004183841.GA20216@playground




virtual consoles

2012-10-04 Thread james gray
Does any one know of - info source to set up virtual consoles in the
network install of Debian Squeeze 6.0

that comes from here:

http://www.debian.org/CD/netinst/


it is installed and functional.

I am not using a GUI.

I am using the command line only.


if i do press simultaneously the ctrl or alt and any one of the f1 through
f6 keys the buzzer buzzes. v consoles - no functionality.


i have seen /etc/ConsoleKit

and did do a internet search with words:

debian squeeze /etc/ConsoleKit


and see that it tracks user actions.


i also see /etc/console-setup

and did a search on that also


a lot of chatter on fonts and migrate from Lenny bugs with no fruit in set
up or configure.


 any assistance

Thank you


Re: virtual consoles

2012-10-04 Thread Darac Marjal
On Thu, Oct 04, 2012 at 07:08:49AM -0700, james gray wrote:
Does any one know of - info source to set up virtual consoles in the
network install of Debian Squeeze 6.0�
 
that comes from here:
 
[1]http://www.debian.org/CD/netinst/
 
it is installed and functional.
 
I am not using a GUI.�
 
I am using the command line only.
 
if i do press simultaneously the ctrl or alt and any one of the f1 through
f6 keys the buzzer buzzes. v consoles - no functionality.
 
i have seen /etc/ConsoleKit
 
and did do a internet search with words:
 
debian squeeze /etc/ConsoleKit
 
and see that it tracks user actions.
 
i also see /etc/console-setup�
 
and did a search on that also
 
a lot of chatter on fonts and migrate from Lenny bugs with no fruit in set
up or configure.
 
�any assistance�

OK. You've been following a bit of a red-herring there, but that's only
to be expected. Virtual Terminals, themselves are controlled by the
kernel, but most relevant is the program that runs on the virtual
terminal and asks for your login details. This is called a getty and
is configured in /etc/inittab. You should see a series of lines such
as:

1:2345:respawn:/sbin/getty 38400 tty1
2:23:respawn:/sbin/getty 38400 tty2
3:23:respawn:/sbin/getty 38400 tty3
4:23:respawn:/sbin/getty 38400 tty4
5:23:respawn:/sbin/getty 38400 tty5
6:23:respawn:/sbin/getty 38400 tty6

The first colon-separated field is a label. The second states which
run-levels the program should run in, the third is a command to init and
the fourth is the program to run. So, as you can see, in my case I get
six VTs in runlevel 2 (my default).

So, firstly, check that you have these lines. If you don't have that
many, then, obviously you can't switch to those that you don't have.

Next, make sure you're pressing CTRL+ALT+Fx (where x is the number of
the VT you want to go to). If that still doesn't work, try the chvt
program from the kbd package. sudo chvt 1 SHOULD take you to VT 1.
If that works, but the key-combination doesn't, then you may have a
keyboard configuration issue.



signature.asc
Description: Digital signature


virtual consoles

2012-10-04 Thread james gray
Does any one know of - info source to set up virtual consoles in the
network install of Debian Squeeze 6.0

that comes from here:

http://www.debian.org/CD/netinst/


it is installed and functional.

I am not using a GUI.

I am using the command line only.


if i do press simultaneously the ctrl or alt and any one of the f1 through
f6 keys the buzzer buzzes. v consoles - no functionality.


i have seen /etc/ConsoleKit

and did do a internet search with words:

debian squeeze /etc/ConsoleKit


and see that it tracks user actions.


i also see /etc/console-setup

and did a search on that also


a lot of chatter on fonts and migrate from Lenny bugs with no fruit in set
up or configure.


 any assistance

Thank you


Re: virtual consoles

2012-10-04 Thread Mike McClain
Howdy,
On Thu, Oct 04, 2012 at 03:38:14PM +0100, Darac Marjal wrote:
 On Thu, Oct 04, 2012 at 07:08:49AM -0700, james gray wrote:
 Does any one know of - info source to set up virtual consoles in the
 network install of Debian Squeeze 6.0???
snip

 OK. You've been following a bit of a red-herring there, but that's only
 to be expected. Virtual Terminals, themselves are controlled by the
 kernel, but most relevant is the program that runs on the virtual
 terminal and asks for your login details. This is called a getty and
 is configured in /etc/inittab. You should see a series of lines such
 as:

 1:2345:respawn:/sbin/getty 38400 tty1
 2:23:respawn:/sbin/getty 38400 tty2
 3:23:respawn:/sbin/getty 38400 tty3
 4:23:respawn:/sbin/getty 38400 tty4
 5:23:respawn:/sbin/getty 38400 tty5
 6:23:respawn:/sbin/getty 38400 tty6


In addition to the excellent advice Darac gave if you're runnung
without a GUi and don't want to have to login to each VT take a look
at openvt.
my /etc/inittab contains these lines:

#   one vt for root and one for mike.
1:2345:respawn:/sbin/getty 38400 tty1
4:23:respawn:/sbin/getty 38400 tty4

# Action on special keypress (ALT-UpArrow).
# sudo needed unless NOPASSWD:ALL   in /etc/sudoers?
kb::kbrequest:$( [ id -u -eq 0 ]  /bin/openvt -su ||
sudo /bin/openvt -su)

This line allows me to open vts with a single keystroke without logging in to 
each one.

HTH,
Mike
--
Satisfied user of Linux since 1997.
O ascii ribbon campaign - stop html mail - www.asciiribbon.org


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121004183841.GA20216@playground



Mes consoles ont fuguées !!!

2012-07-18 Thread zulian
Bonjour,

Debian testing

En console virtuelle comme en console réelle, je n'ai plus de curseur !!
Le problème est apparu suite à un upgrade

Exemple :

Sous X :
clic pour ouvrir une console -- pas de curseur --- au bout de quelques 
minutes la console se referme.

Mode console   :
ctrl halt f1 --- accès à la première console   le prompt s’affiche  login  
--- password

puis plus rien, je n'ai plus de curseur.

Une idée ?

--

Frédéric
F1sxo
frederic zulian ✆ zul...@free.fr

01:23 (Il y a 11 heures)

à linux-31
Ah, je viens de voir passer fugacement le message suivant :

Warning: Program '/bin/bash' crashed.



Une idée  ?

--

Frédéric F1sxo

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: 
http://lists.debian.org/2124519311.25657122.1342609013813.javamail.r...@zimbra22-e3.priv.proxad.net



Mes consoles ont fuguées !!!

2012-07-17 Thread frederic zulian
Bonjour,

Debian testing

En console virtuelle comme en console réelle, je n'ai plus de curseur !!
Le problème est apparu suite à un upgrade

Exemple :

Sous X :
clic pour ouvrir une console -- pas de curseur --- au bout de quelques
minutes la console se referme.

Mode console   :
ctrl halt f1 --- accès à la première console   le prompt s’affiche 
login  --- password

puis plus rien, je n'ai plus de curseur.

Une idée ?

--

Frédéric
F1sxo


Re: Mes consoles ont fuguées !!!

2012-07-17 Thread frederic zulian
Ah, je viens de voir passer fugacement le message suivant :

Warning: Program '/bin/bash' crashed.


Une idée

--

Frédéric F1sxo




Le 18 juillet 2012 00:45, frederic zulian zul...@free.fr a écrit :

 Bonjour,

 Debian testing

 En console virtuelle comme en console réelle, je n'ai plus de curseur !!
 Le problème est apparu suite à un upgrade

 Exemple :

 Sous X :
 clic pour ouvrir une console -- pas de curseur --- au bout de quelques
 minutes la console se referme.

 Mode console   :
 ctrl halt f1 --- accès à la première console   le prompt s’affiche 
 login  --- password

 puis plus rien, je n'ai plus de curseur.

 Une idée ?

 --

 Frédéric
 F1sxo





  1   2   3   4   5   >