Displaying 20 results from an estimated 1000 matches similar to: "[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does"
2014 Jun 11
0
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
On 06/11/2014 01:02 AM, Thorsten Glaser wrote:
> While all ?real? ttys may support TIOCGPGRP, /dev/console doesn?t;
> using TCGETS here allows Linux booted with init=/bin/mksh-static
> to have working interactive command line (PS1, editing, etc).
>
> Reported-by: Dominik George <d.george at tarent.de>
> Signed-off-by: Thorsten Glaser <t.glaser at tarent.de>
> ---
2014 Jul 09
0
[klibc:master] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
Commit-ID: 7763dd33e5b8eed4b9e3c583c02c10176fd550d3
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=7763dd33e5b8eed4b9e3c583c02c10176fd550d3
Author: Thorsten Glaser <tg at mirbsd.org>
AuthorDate: Wed, 11 Jun 2014 10:02:14 +0200
Committer: H. Peter Anvin <hpa at zytor.com>
CommitDate: Wed, 9 Jul 2014 08:21:02 -0700
[klibc] isatty(): use TCGETS instead of
2014 Jun 12
0
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
Maciej ?enczykowski dixit:
>I guess what I wanted to say is that it might be desirable to have the
>klibc shell do some dancing (perhaps controlled by some flags, but on
There is no klibc shell.
>child should
>
>setsid()
>close(2)
>close(1)
>close(0)
>open("/dev/ttyS0", O_RDONLY)
>open("/dev/ttyS0", O_WRONLY|O_NOCTTY)
2014 Jun 11
2
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
I guess what I wanted to say is that it might be desirable to have the
klibc shell do some dancing (perhaps controlled by some flags, but on
by default?)
If getpid() == 1 then fork a child, continue in the child, have the
parent wait for the child to terminate, then exit
child should
setsid()
close(2)
close(1)
close(0)
open("/dev/ttyS0", O_RDONLY)
open("/dev/ttyS0",
2014 Jun 11
3
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
H. Peter Anvin dixit:
>But is that really a tty, then? I also understand that virtio console
Hm. Both eglibc and dietlibc return true for isatty on it.
>doesn't support termios, which makes this an ugly bifurcation. All of
Let me test that? quick? hah not really (CONFIG_VIRTIO_CONSOLE=m)?
ok luckily Ubuntu?s linux-image-3.15.0-5-generic is installable on
Debian stable and has
2014 Jun 11
0
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
Does ctrl+c work?
My experience with (non klibc) init=/bin/bash is that getting ctrl+c
to work requires some jumping through hoops, because running as pid 1
doesn't really work.
If I recall correctly you have to call setsid, and open a tty as a
controlling tty, you can't call setsid as pid 1.
The hack that I got to work (for reference, I'm using this for raw
kernel testing
2014 Nov 25
3
[PATCH] mllib: use Unix.isatty
Make use of Unix.isatty instead of our TTY.isatty_stdout, as the
supported OCaml provides the former already.
---
mllib/common_utils.ml | 10 +++++-----
mllib/progress.ml | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml
index 295981c..9fcd8dd 100644
--- a/mllib/common_utils.ml
+++ b/mllib/common_utils.ml
@@ -207,15 +207,15
2000 Dec 05
1
Bugreport: openssh-2.3.0p1 scp to SSH2 (2.0.13) server
Hi,
this is a type 3 bugreport ;)
( 3. Repeatable problems specific to your software layout.)
first of all i must state, that i run openssh on a fairly
old redhat based system (redhat 6.1).
if you have any further questions, feel free to contact me.
configure options:
CFLAGS="-O2 -m486" ./configure --without-rsh --with-tcp-wrappers --prefix=/opt/openssh-2.3.0
2006 Jun 06
1
Asterisk 1.2.7.1 bad file descriptor
Hi all,
could someone tell me what this does mean "bad file descriptor" when
trying to start asterisk. It goes till the CLI command and then die with
this message. Below an strace output from asterisk -vvvvvvvvvc
It's on debian Sarge kernel 2.6.7 with packages from debian VoIP team.
The server was running fine till now with this version.
Thanks
2010 Nov 05
4
xe cli not working on remote machine
Hi list,
I have 3 Citrix Xenserver 5.6 and currently building a a VM backup server.
I took the xe client on one of the server and installed it on the backup server (gentoo based)
installed the stunnel package to make XE work.
now when running, I get this error message :
[server ~ #] ./xe help -debug -s 192.168.111.17 -u user -pw pass
Connecting via stunnel to [192.168.111.17] port [443]
2016 Aug 30
1
UPS shutdown
Hi All,
I'm trying to shutdown my UPS using NUT driver version
upsdrvctl -V
Network UPS Tools - UPS driver controller* 1.01-906.*
My UPS details are the following :
battery.charge: 100
battery.charge.low: 5
battery.charge.warning: 50
battery.runtime: 22980
battery.runtime.low: 120
battery.type: PbAc
battery.voltage: 26.8
battery.voltage.nominal: 24.0
*device.mfr: American Power Conversion*
2015 Jun 09
4
File copy operation blocks on Samba share
Hello,
I am running a server with cifs-utils 6.0 on Ubuntu 14.04 trusty with a CIFS
mount as follows:
//server/share /mnt/Share cifs
rw,relatime,vers=1.0,cache=strict,username=myuser,domain=EXAMPLE,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.0.8,unix,posixpaths,serverino,acl,rsize=1048576,wsize=65536,actimeo=1
0 0
I am using perl's File::Copy function to copy several hundred files from
2007 Jan 05
0
troubles with telnet sessions under Solaris8 as AD member with winbind V3.0.23d
Hi guys,
I've a problem with telnet sessions under Solaris 8 with samba 3.0.23d
winbind.
If I have the winbind authorization active for telnet in my pam.conf I got
a kick out of the system after exactly 300 sec, no mather if I do or do
not activity on the telnet session. The same behavior is for AD and for
local users.
I've trussed a telnet session a the only thing I see is that my
2002 May 01
3
scp 3.1p1 problem on Solaris
I have removed ANDIrand from my Solaris8 system and installed patch
112438-01 which provides native /dev/random and /dev/urandom devices.
Recompiled both openssl-0.9.6c and openssh-3.1p1, restarted sshd.
Now I seem unable to use scp, and connections to the local sshd appear
to be very slow.
$ scp php-4.2.0.tar.gz user at remote:/WWWserv/src
local at bastion's password:
php-4.2.0.tar.gz
2003 Aug 05
1
compile with dietlibc
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi all,
I'm used to test the software which I use with dietlibc, just to see if it
could run without the bloat of glibc.
While compiling dovecot 0.99.10 I got these errors:
In file included from lib.h:20,
from alarm-hup.c:26:
compat.h:30: conflicting types for `uint_fast32_t'
/opt/diet/include/stdint.h:25: previous
2019 Jan 24
2
debian10+dovecot-2.2.33.2
Hi
Thenx for replay.
Finaly for a test in my lab
I upgrate to latest 2.2.36 and os debian 10
In this machine is dovecot director
But if i tested via telnet
root at postfix:~# telnet 46.xxx.xxx.xxx 143
Trying 46.xxx.xxx.xxx...
Connected to 46.xxx.xxx.xxx.
Escape character is '^]'.
* BYE Disconnected: Auth process broken
Connection closed by foreign host.
In log:
Jan 24 16:02:07 postfix
2000 Sep 02
2
[PATCH]: Cygwin port of 2.2.0p1
Attached is the patch for the Cygwin port of 2.2.0p1. As usual I didn't
attach the patch to `configure' but only the patch to `configure.in'.
BTW: I have attached a gzip'd version of the patch since it's size
is > 20K and I thought that it might be too big. The gzip'd diff is
< 8K.
What are "Small attachments (such as diff files) within the bounds
of common
2001 Jun 15
2
openssh 2.9p1: data loss when stdout sent to a pipe
We recently tried upgrading openssh from 2.5.2p2 to 2.9p1
and discovered that it no longer worked to feed the output from a remote
command into a pipe, unless the output was short and the pipe was very
fast at processing its input.
Example 1: ssh remote_machine some_command | less
(where "some_command" generates a lot of output) now fails after
the first screenful, with a
2003 Jan 27
0
[Bug 477] New: progressmeter.c problem requires openbsd-compat/bsd-cray.h change
http://bugzilla.mindrot.org/show_bug.cgi?id=477
Summary: progressmeter.c problem requires openbsd-compat/bsd-
cray.h change
Product: Portable OpenSSH
Version: 3.5p1
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo:
2012 Nov 21
1
Conntrackd - fail at startup.
Hi all.
I currently try to start conntrackd to test it.
CentOS release 6.3 (Final)
Linux lb1.local 2.6.32-279.11.1.el6.x86_64 #1 SMP Tue Oct 16 15:57:10 UTC
2012 x86_64 x86_64 x86_64 GNU/Linux
This is a VirtualBox vm.
I try:
/usr/sbin/conntrackd -C /etc/conntrackd/conntrackd.conf -d
My config:
[root at lb1 log]# egrep -v '^\s*#|^$' /etc/conntrackd/conntrackd.conf | less
Sync {