Displaying 20 results from an estimated 3000 matches similar to: "bug in scp (maybe)"
2014 Feb 28
5
Call for testing: OpenSSH 6.6
Hi,
OpenSSH 6.6 is almost ready for release, so we would appreciate testing
on as many platforms and systems as possible. This is a small release
mostly to fix some minor but annoying bugs in openssh-6.5.
Snapshot releases for portable OpenSSH are available from
http://www.mindrot.org/openssh_snap/
The OpenBSD version is available in CVS HEAD:
http://www.openbsd.org/anoncvs.html
Portable
2016 Apr 05
0
[PATCH 4/7] v2v: extract reusable parts of viostor regedits
There are registry entries that are needed to add some other drivers.
Extracting them into a function will help adding SUSE VMDP support.
---
v2v/windows_virtio.ml | 311 ++++++++++++++++++++++++++++----------------------
1 file changed, 176 insertions(+), 135 deletions(-)
diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml
index 14ffc51..8a0b529 100644
--- a/v2v/windows_virtio.ml
+++
2014 Nov 05
0
SYSAPPEND not replacing spaces
Hello,
The description of SYSAPPEND for the DMI information states that the spaces are replaced by underscores, but this replacement does not occur in 6.03. There's small bug present in triplicata in com32/elflink/ldlinux/readconfig.c:copy_sysappend_string(), com32/menu/readconfig.c:copy_sysappend_string(), and core/sysappend.c:copy_and_mangle() prevent proper replacement of spaces by
2015 Jul 01
5
boot... round 2
To remind you once again.
ISOLINUX >= 6.00 built with GCC >= 5.0.0 causes a broken boot.
This relates specifically to the use of the vesamenu.c32,
menu.c32 works without problemos.
This "code" is already in 6.03, therefore this is not a fix for it!
Revert "SYSAPPEND: Fix space stripping"
This reverts commit 3106dcd
http://repo.or.cz/w/syslinux.git/commit/3106dcd
Fixes
2015 Jul 02
0
boot... round 2
Hi,
poma wrote:
> - if (c <= ' ' || c == '\x7f') {
> + if (c <= ' ' && c == '\x7f') {
As Geert Stappers pointed out (and can be verified by a
simple test program), the reinstated term
(c <= ' ' && c == '\x7f')
evaluates always as false, because ('\x7f' <= ' ') is false.
So it is
2015 Jul 02
1
boot... round 2
On 02.07.2015 11:10, Thomas Schmitt wrote:
> Hi,
>
> poma wrote:
>> - if (c <= ' ' || c == '\x7f') {
>> + if (c <= ' ' && c == '\x7f') {
>
> As Geert Stappers pointed out (and can be verified by a
> simple test program), the reinstated term
> (c <= ' ' && c == '\x7f')
>
2008 May 09
2
Problem, possibly bug with AllowUsers & DenyUsers
Hi there,
I have just compiled openssh-5.0 on Solaris 10, and am trying to set up
a certain pattern of user access control. Essentially, regular users
should be able to login from any network, while root should be able to
login only from a private network 192.168.88.0/22. Actually, for the
purpose of sshd_config, this is four networks, but that's another story...
Here is what I tried:
2015 Jul 03
0
boot... round 2
On 02.07.2015 23:12, Thomas Schmitt wrote:
> Hi,
>
> hpa wrote:
>> On PowerPC (I think) "unsigned char" is the default.
>
> In any case it seems a good idea to interpret the character
> more explicitely. To my experience, one signdness change causes
> a little tree of consequential signedness changes or questionable
> cast operations.
> How about the
2015 Jul 02
4
boot... round 2
On 02.07.2015 01:28, Gene Cumm wrote:
> On Wed, Jul 1, 2015 at 10:14 AM, poma <pomidorabelisima at gmail.com> wrote:
>> On 01.07.2015 12:10, Gene Cumm wrote:
>>> On Wed, Jul 1, 2015 at 4:35 AM, poma <pomidorabelisima at gmail.com> wrote:
>>>>
>>>> To remind you once again.
>>>> ISOLINUX >= 6.00 built with GCC >= 5.0.0 causes a
2006 Oct 26
1
Error: invalid multibyte string
I'm observing the following on different platforms:
> parse(text='"\\x7F"')
expression("\177")
> parse(text='"\\x80"')
Error: invalid multibyte string
...
> parse(text='"\\xFF"')
Error: invalid multibyte string
However,
cat("\x7F\n\x80\n...\xFF\n")
works. Using R --vanilla.
SYSTEMS GIVING THE ERROR:
>
2012 Dec 15
1
virt-resize Fatal error: exception Guestfs.Error("e2fsck_f
We?ve been seeing this a lot lately on generic CentOS 6 rpm installs:
rpm -qa | grep libguestfs
libguestfs-java-1.16.19-1.el6.x86_64
libguestfs-java-devel-1.16.19-1.el6.x86_64
libguestfs-1.16.19-1.el6.x86_64
libguestfs-tools-1.16.19-1.el6.x86_64
libguestfs-javadoc-1.16.19-1.el6.x86_64
libguestfs-devel-1.16.19-1.el6.x86_64
libguestfs-tools-c-1.16.19-1.el6.x86_64
2015 Jul 02
0
boot... round 2
On 07/01/2015 01:35 AM, poma via Syslinux wrote:
>
> diff --git a/com32/elflink/ldlinux/readconfig.c b/com32/elflink/ldlinux/readconfig.c
> index 381b43f..dcdf91b 100644
> --- a/com32/elflink/ldlinux/readconfig.c
> +++ b/com32/elflink/ldlinux/readconfig.c
> @@ -330,7 +330,7 @@ static char *copy_sysappend_string(char *dst, const char *src)
> char c;
>
> while
2015 Jul 03
0
boot... round 2
On 03.07.2015 12:28, Gene Cumm wrote:
> On Fri, Jul 3, 2015 at 12:50 AM, poma via Syslinux <syslinux at zytor.com> wrote:
>
>> - "unsigned char c;" does not solve the problem
>>
>> - "c >= 0 && c <= ' '" solves the problem for the current git
>
> Could you try the following patch? Feel free to only apply the change
2015 Jul 02
0
boot... round 2
On Thu, Jul 2, 2015 at 1:32 AM, poma <pomidorabelisima at gmail.com> wrote:
> On 02.07.2015 01:28, Gene Cumm wrote:
>> On Wed, Jul 1, 2015 at 10:14 AM, poma <pomidorabelisima at gmail.com> wrote:
>>> On 01.07.2015 12:10, Gene Cumm wrote:
>>>> On Wed, Jul 1, 2015 at 4:35 AM, poma <pomidorabelisima at gmail.com> wrote:
>>>>>
2015 Jan 21
0
Is anyone using C7 in production yet? (sssd, nss-pam-ldapd, kerberos, etc)
On Wed, Jan 21, 2015 at 03:15:35PM +0000, Sorin Srbu wrote:
> > -----Original Message-----
> > From: centos-bounces at centos.org [mailto:centos-bounces at centos.org] On
> > Behalf Of Fred Smith
> > Sent: den 21 januari 2015 15:35
> > To: centos at centos.org
> > Subject: Re: [CentOS] Is anyone using C7 in production yet? (sssd, nss-pam-
> > ldapd,
2015 May 12
0
CentOS 7 MATE flakey mouse
On Mon, May 11, 2015 at 02:38:21PM -0600, Devin Reade wrote:
> I'm using the MATE desktop (via 'yum groupinstall "MATE Desktop"') on
> CentOS 7. I'm finding the mouse to be rather flakey in the sense
> that:
> - in MATE Terminal, clicking on text and dragging the mouse (in order
> to highlight the text and copy it to the X cut & paste buffer) will
2012 Dec 07
0
Rsync / ssh high cpu load
Hi,
ssh: OpenSSH_5.3p1
rsync: 3.0.6
OS: CentOS release 6.3
I got the same problem here, syncing 95M to amazon ec2 without
--bwlimit parameter. It should be not caused by cygwin. From 3.0.6 to
latest version, I did not find any ssh related problem fixed.
After the syncing job is over, ssh process did not quit and consumes
100% CPU. I collected other information, wish it may help.
related
2015 Dec 11
0
no longer goes to standby when lid is closed
I've heard this happening to someone on IRC, the solution if I remember correctly is to update MATE from epel-testing.
See if that works for you.
--
Sent from the Delta quadrant using Borg technology!
Nux!
www.nux.ro
----- Original Message -----
> From: "Fred Smith" <fredex at fcshome.stoneham.ma.us>
> To: centos at centos.org
> Sent: Friday, 11 December, 2015
2019 Jul 15
0
Mate on Centos 7
On Mon, Jul 15, 2019 at 10:22:29AM -0400, H wrote:
> On July 15, 2019 8:21:10 AM EDT, Jonathan Billings <billings at negate.org> wrote:
> >On Mon, Jul 15, 2019 at 07:27:46AM -0400, H wrote:
> >> What is the recommended way to upgrade to 1.22?
> >
> >I see you've already done the appropriate thing, filed a ticket[1]
> >against the EPEL package in
2015 Jul 02
6
boot... round 2
Hi,
hpa wrote:
> On PowerPC (I think) "unsigned char" is the default.
In any case it seems a good idea to interpret the character
more explicitely. To my experience, one signdness change causes
a little tree of consequential signedness changes or questionable
cast operations.
How about the following instead ?
if ((c >= 0 && c <= ' ') || c == '\x7f')