Displaying 20 results from an estimated 192 matches for "glaser".
Did you mean:
laser
2014 Jun 11
2
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
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>
---
usr/klibc/isatty.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/usr/klibc/isatty.c b/usr/klibc/isatty.c
index c2e4a4e..2359479 100644
--- a/usr/klibc/isatty.c
+++ b/usr/klibc/isatty.c
@@ -8,8 +8,9 @@
int isatty(int fd)
{
- int dummy...
2014 Nov 06
3
No thanks for breaking third-party applications
Hi *,
I was just debugging why TFTP booting did not work any more
on a system that had pxelinux.0 was updated.
?Since version 5.00, support for 16-bit COMBOOT modules has been
dropped, and c32 modules switched from the COM32 object format to ELF.?
Ugh. Well, updating the *.c32 files was enough to make the
Linux discless thingy work again. BUT!
The MirBSD bootloader actually took advantage of
2020 Aug 03
6
Deprecation of scp protocol and improving sftp client
...;>> This seems like it would lend some impetus to doing _something_,
>>> even if it
>>> breaks scp or necessitates using something new.
>>>
>>> Cheers,
>>>
>>> Ethan
>>>
>>>> On Wed, Jul 15, 2020 at 7:47 AM Thorsten Glaser <
>>>> t.glaser at tarent.de> wrote:
>>>>
>>>>> On Wed, 15 Jul 2020, Red Cricket wrote:
>>>>>
>>>>> I have had this in my .bashrc for years:
>>>>>
>>>>> alias scp='rsync -avzP'
>&g...
2020 Aug 01
2
Deprecation of scp protocol and improving sftp client
...issue with scp which it sounds like cannot be fixed without breaking scp.
> This seems like it would lend some impetus to doing _something_, even if it
> breaks scp or necessitates using something new.
>
> Cheers,
>
> Ethan
>
>> On Wed, Jul 15, 2020 at 7:47 AM Thorsten Glaser <t.glaser at tarent.de> wrote:
>>
>>> On Wed, 15 Jul 2020, Red Cricket wrote:
>>>
>>> I have had this in my .bashrc for years:
>>>
>>> alias scp='rsync -avzP'
>>
>> Similar, though I named it rcp because nobody has the...
2014 Dec 05
8
vesamenu back to text before booting
On Fri, 5 Dec 2014, Gene Cumm wrote:
> >> mostly in C and be BIOS-only) or making the MirOS kernel act like
> >> either an MBOOT kernel or a Linux kernel (for their boot protocols),
The MirBSD _bootloader_ (not kernel) can act as a Multiboot kernel.
It can then use disc access (not PXE), or you can pass it the ?real?
kernel, but also e.g. configuration files, as Multiboot
2020 Aug 03
2
Deprecation of scp protocol and improving sftp client
On Tue, 4 Aug 2020, raf wrote:
> In such cases, this vulnerability can be mitigated by
> the use of an ssh-specific command whitelisting control
> such as:
Probably just as easy: give the user a restricted shell
(/bin/rmksh) as shell and set their PATH etc. suitably,
to not include any other commands.
bye,
//mirabilos
PS: Full disclosure: I?m the mksh developer
--
?MyISAM tables
2012 May 25
4
klibc breakage on alpha, need porterbox
Hi,
is there a DD-accessible porterbox somewhere (slow would be ok,
as this is smallish software) with an up-to-date sid (enough to
install the recently-built libklibc-dev 2.0~rc5-1 and all other
B-D of mksh 40.9.20120518-1, as well as strace and gdb-minimal)?
Similarily to http://www.zytor.com/pipermail/klibc/2012-May/003229.html
I found klibc-compiled programmes on Alpha to fail (SIGSEGV
2020 Aug 03
6
Deprecation of scp protocol and improving sftp client
...her.
I'd much prefer (a), even if it means I lose "scp remotehost:foo\* .".
Especially, since (almost always) I have equal privileges on both local and remote hosts, so in that case I just originate that "scp" from that remote. ;-)
TNX
?On 8/3/20, 11:09, "Thorsten Glaser" <t.glaser at tarent.de> wrote:
On Mon, 3 Aug 2020, Blumenthal, Uri - 0553 - MITLL wrote:
> I conjecture that only few of the existing use cases rely on remote expansion.
No, this is used all the time.
scp remotehost:foo\* .
(Unless rsync is available, but sa...
2020 Jan 11
2
Why are the arguments supplied for the command run through ssh interpreted by shell before they are passed to the command on the server side?
On 2020-01-11 08:57, Thorsten Glaser wrote:
> If you wish for no local expansion, quote locally, such as:
>
> ssh -l luser remotehost '
> command1
> command2
> ?
> '
This didn't work for me because single quotes only prevent local
expansion. The string is expanded on the remote host.
Yuri
2024 Jun 26
2
An Analysis of the DHEat DoS Against SSH in Cloud Environments
On Wed, 2024-06-26 at 04:32 +0200, Thorsten Glaser wrote:
> If they get under attack, they?d better do. And if you?re ignoring
> a known bottleneck, the results will probably not be very useful?
> besides, not everyone is systemd-infested.
The primary responsibility falls on system designers to choose
reasonable default settings.
2012 Jun 07
1
[PATCH] klcc --version is -V because -v is --verbose already (unbreak -v)
Signed-off-by: Thorsten Glaser <tg at mirbsd.org>
---
klcc/klcc.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/klcc/klcc.in b/klcc/klcc.in
index 43d0984..e03bf3c 100644
--- a/klcc/klcc.in
+++ b/klcc/klcc.in
@@ -136,7 +136,7 @@ while ( defined($a = shift(@ARGV)) ) {
} else {
die "$0:...
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-of...
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 TIOCGPGRP, like dietlibc does
While all ?real? ttys may support TIOCGPGRP, /dev/console doesn...
2014 Dec 03
3
vesamenu back to text before booting
On Wed, 3 Dec 2014, H. Peter Anvin wrote:
> Ah, depends on the image type. We spoke reset for an NBP though.
?!
//mirabilos
--
tarent solutions GmbH
Rochusstra?e 2-4, D-53123 Bonn ? http://www.tarent.de/
Tel: +49 228 54881-393 ? Fax: +49 228 54881-235
HRB 5168 (AG Bonn) ? USt-ID (VAT): DE122264941
Gesch?ftsf?hrer: Dr. Stefan Barth, Kai Ebenrett, Boris Esser, Alexander Steeg
2014 Dec 03
0
vesamenu back to text before booting
On 12/03/2014 08:43 AM, Thorsten Glaser wrote:
> On Wed, 3 Dec 2014, H. Peter Anvin wrote:
>
>> Ah, depends on the image type. We spoke reset for an NBP though.
>
> ?!
>
Should, not spoke.
-hpa
2014 Dec 03
4
vesamenu back to text before booting
On Tue, 2 Dec 2014, H. Peter Anvin wrote:
> This is the default unless the "quiet" option is set.
Hmm.
tglaser at luna:/srv/tftp $ fgrep -ri quiet .
Binary file ./hdt.c32 matches
Binary file ./ldlinux.c32 matches
Binary file ./vmlinuz matches
Binary file ./linux.c32 matches
Binary file ./debian-installer/jessie/amd64/linux matches
Binary file ./debian-installer/jessie/i386/linux matches
Binary file ./debian...
2020 Jul 15
3
Deprecation of scp protocol and improving sftp client
On Wed, 15 Jul 2020, Red Cricket wrote:
> I have had this in my .bashrc for years:
>
> alias scp='rsync -avzP'
Similar, though I named it rcp because nobody has the real rcp installed
any more, but sometimes I need scp to connect to systems that lack rsync.
https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=shellsnippets/shellsnippets.git;a=blob;f=mksh/rcp;hb=HEAD
>
2011 Feb 27
4
[PATCH] Add minimal mkstemp(3) implementation.
This uses time, ASLR and pid for randomisation. (Closes: #516774)
Signed-off-by: Thorsten Glaser <tg at mirbsd.org>
---
usr/include/stdlib.h | 2 +
usr/klibc/Kbuild | 2 +-
usr/klibc/mkstemp.c | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 96 insertions(+), 1 deletions(-)
create mode 100644 usr/klibc/mkstemp.c
diff --git a/usr/include/stdlib.h b...
2014 Dec 03
2
vesamenu back to text before booting
H. Peter Anvin wrote:
} Thorsten Glaser wrote:
} } When I have an environment that uses vesamenu, for example on PXE,
} } how do I configure it so that, for some of the menu entries, it
} } switches back to the text mode (03h) before handing off to the next
} } bootloader / kernel?
}
} depends on the image type. We should reset for an N...
2014 Dec 05
0
updating the wiki WAS: vesamenu back to text before booting
On Fri, Dec 05, 2014 at 10:16:10AM +0100, Thorsten Glaser wrote:
> On Fri, 5 Dec 2014, Gene Cumm wrote:
>
> > If so: http://www.syslinux.org/wiki/index.php/Mboot.c32
>
> I???m not permitted to edit either that page or its talk page.
> Do I submit the content addition here, then?
Euh, yes, that is an option.
Hereby I volunteer for...