Displaying 19 results from an estimated 19 matches for "fascists".
Did you mean:
fascist
1997 Jan 27
2
SECURITY: passwd problem (second edition)
[Mod: Other lists removed from the headers. The patch looks okay but I did
not really checked it line by line -- alex]
Last night I sent to redhat-list a letter with a patch. After sleeping a little
I found that my patch is not enough correct.
Now I post the new patch and description of the problem.
In redhat distribution passwd program uses PAM, namely, pam_unix_passwd.so.
This module use
2017 Aug 02
2
Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
On Wed, Aug 02, 2017 at 02:04:54PM +0200, hw wrote:
> Just wait and see how he will like the feedback he?s getting here ...
Trolling aside (fascist? really?), I've gotten valuable feedback from
several people which I really appreciate. I intend to continue to
engage with the CentOS community, because when we work on big changes
in Fedora which may come to our downstream distributions,
2017 Apr 21
2
Include for sshd_config
On Thu, Apr 20, 2017 at 11:00 AM, Scott Neugroschl <scott_n at xypro.com> wrote:
>
> On Wed, Apr 19, 2017 at 1:02 PM, navern <livingdeadzerg at yandex.ru> wrote:
>
>> Is there any available tool with this for pre-evaluating the resulting sshd_config for fatal errors? I'm not demanding: I'm thinking "that could be really, really useful".
>
>
2000 Dec 07
0
Mode of ~/.ssh (Darwin bug #2575103)
OpenSSH's ssh-keygen sets the mode of ~/.ssh to 700, unlike "Classic"
ssh, which set it to 755. I've noticed a couple of problems:
If your home directory is on an NFS server which maps user root from
clients to nobody (typical "safe" setup), sshd, which runs as root, will
find itself without the ability to read that user's .ssh/authorized_keys
file. This can be
2017 Aug 03
0
Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
Matthew Miller wrote:
> On Wed, Aug 02, 2017 at 02:04:54PM +0200, hw wrote:
>> Just wait and see how he will like the feedback he?s getting here ...
>
> Trolling aside (fascist? really?), I've gotten valuable feedback from
> several people which I really appreciate. I intend to continue to
> engage with the CentOS community, because when we work on big changes
> in
2003 Sep 28
1
Getting SILO Overflows during burncd
FreeBSD wahoo.prodigy.net 4.9-PRERELEASE FreeBSD 4.9-PRERELEASE #0: Tue
Sep 23 10:13:51 CDT 2003
jbryant@wahoo.prodigy.net:/usr/obj/usr/src/sys/WAHOO.SMP i386
Dual Pentium II 333 MHz on Tyan Thunder-2 Motherboard.
Anyone else seeing this?
jim
--
"Religious fundamentalism is the biggest threat to international security that exists today."
United Nations Secretary
2008 Aug 25
1
Re: IPTables HowTo (Comment)
Daniel Swid wrote:
> Hi,
> Was following along reading your how-to with a box I had ssh'd to. I started
> pasting in the commands to build my own filter and my computer connection
> suddenly stopped responding after I pasted in
>
> iptables -P INPUT DROP
>
> Thought it'd be good of you to add a little warning next to that line....
>
> Cheers,
> Daniel
2015 Jan 22
1
CentOS - Firefox and Flash
On Wed, January 21, 2015 14:27, Fred Smith wrote:
> On Wed, Jan 21, 2015 at 01:37:43PM -0500, James B. Byrne wrote:
>> So, how does one enable flash video and audio in Firefox-31.4.0esr?
>
> One installs the flash plugin from Adobe and configures firefox to
> either run it automatically when needed, or to ask if you want
> to allow it to run, every time (which helps prevent
2017 Apr 20
3
Include for sshd_config
On Wed, Apr 19, 2017 at 1:02 PM, navern <livingdeadzerg at yandex.ru> wrote:
> On 10.04.2017 23:02, navern wrote:
>>
>>
>> On 07.04.2017 15:05, Jakub Jelen wrote:
>>>
>>> On 04/07/2017 11:54 AM, navern wrote:
>>>>
>>>> Hello,
>>>>
>>>> Afaik there was added Include feature for ssh_config. I want to add
2003 Sep 11
2
Blocking spamblocked.earthlink.net
For those who don't know, Greg Houlette sent in a request from an
address that doesn't conveniently accept replies.
If people can't be bothered to read our replies, we shouldn't be
bothered by their requests.
Just a note. Maybe a request for a killfile.
--Dan
2017 Jul 29
3
Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
> On Jul 28, 2017, at 1:56 PM, hw <hw at gc-24.de> wrote:
>
>> Many bugs are fixed in Fedora. Many more bugs are fixed in the
>> upstreams. Please remember that Fedora is primarily an *integration*
>> project, and the best way to get bugs fixed is for the developers of
>> the code in question to be involved. Many Fedora maintainers help
>> facilitate this
2001 Sep 14
5
Our Sympathies
The following is a message to be sent to the President
of the United States of America. Although we may not be able to do a
great deal from where we are, but for the people of America just
knowing we care and feel their sadness will help. Please put your name
on the following list and send it to all you know and who care. If you
are the 100th name and every 100th there on could you please also
2002 Apr 18
3
'make' fails on redhat 6.x
..._CIPH_VARIABLE_LENGTH' undeclared (first use in this function)
cipher.c:498: `EVP_CIPH_ALWAYS_CALL_INIT' undeclared (first use in this function)
make: *** [cipher.o] Error 1
==== ... end make. ===================================================
--
if I can shoot rabbits, I can shoot fascists
2007 Apr 25
2
[LLVMdev] Work in progress patch to speed up andersen's implementation
Hi guys, i'm not going to have time to work on this for a month or
two, so i figured i'd post it.
This patch
1. reworks the andersen's implementation to support field sensitivity
(though field-sensitive constraints are not generated directly yet),
and uses it to do indirect function call support.
2. Rewrites the solver to be state of the art in terms of speed.
kimwitu++ used to take
2009 Nov 09
1
use STREQ(a,b), not strcmp(a,b) == 0
The series below makes changes like these mechanically,
one class of change per change-set:
strcmp(...) == 0 to STREQ(...)
strcmp(...) != 0 to STRNEQ(...)
strncmp(...) == 0 to STREQLEN(...)
strncmp(...) != 0 to STRNEQLEN(...)
strcasecmp(...) == 0 to STRCASEEQ(...)
strcasecmp(...) != 0 to STRCASENEQ(...)
strncasecmp(...) == 0 to STRCASEEQLEN(...)
2013 Jul 20
7
Failure to Launch (was override -q option)
Attached is the very verbose ssh output. Just to be perverse, this time two
nodes lost connectivity. The only thing I see is lines saying that the two
connections are lost, although being honest I have no idea what everything
else means. For reference, 8 ssh cinnections were being made at the same
time for a 8x8mpi task.
N.B., since the OS I am using does not have rsh, I am currently using the
2015 Oct 05
0
[PATCH 2/2] Fix whitespace.
Because of previous automated commits, such as changing 'guestfs___'
-> 'guestfs_int_', several function calls no longer lined up with
their parameters, and some lines were too long.
The bulk of this commit was done using emacs batch mode and the
technique described here:
http://www.cslab.pepperdine.edu/warford/BatchIndentationEmacs.html
The changes suggested by emacs were
2015 Oct 05
3
[PATCH 1/2] Change 'fprintf (stdout,...)' -> printf.
Result of earlier copy and paste.
---
align/scan.c | 35 ++++++++++---------
cat/cat.c | 39 +++++++++++----------
cat/filesystems.c | 69 +++++++++++++++++++-------------------
cat/log.c | 35 ++++++++++---------
cat/ls.c | 61 +++++++++++++++++----------------
df/main.c | 43 ++++++++++++------------
diff/diff.c | 67