On 02/19/2015 05:45 PM, m.r...@5-cent.us wrote:
Dunno - don't know either the system or IMM2. However, have you tried stty
sane?
mark
Thank you for the suggestion, unfortunately stty sane had no visible effect.
Ignas
___
CentOS mailing list
>
> Sadly there is no ipset-service in the CentOS repos. I'm going to
> steal the init.d script from CentOS6. It works perfectly.
>
If you are just going to 'borrow' a service script I'd suggest grabbing the
fedora systemd service file and popping in the /etc/systemd/system
directory to make dire
Send CentOS-announce mailing list submissions to
centos-annou...@centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-requ..
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hello.
Our products use CentOS 6.5 and we would like to deploy them with custom
openssh RPMs. I have downloaded the sources from
http://athena.caslab.queensu.ca/pub/OpenBSD/OpenSSH/portable and built
the RPMs, but the PAM configuration file is wrong
Johnny,
Any new information here?
On Fri, Jan 23, 2015 at 11:10 AM, wrote:
> Phelps, Matthew wrote:
> > On Fri, Jan 23, 2015 at 10:26 AM, wrote:
> >
> >> Phelps, Matthew wrote:
> >> > On Fri, Jan 23, 2015 at 2:51 AM, Sorin Srbu >
> >> > wrote:
> >> >> > -Original Message-
> >> >> > Fr
On Thu, February 19, 2015 12:33, Les Mikesell wrote:
> On Thu, Feb 19, 2015 at 9:48 AM, James B. Byrne
> wrote:
>>
>>> I added these directives to the route-eth0:192 file:
>>>
>>> ADDRESS0=192.168.6.9
>>> NETMASK0=255.255.255.0
>>> GATEWAY0=192.168.6.1
>>>
>>
>> Which should have been:
>>
>> ADDR
On Thu, February 19, 2015 13:41, Chris Murphy wrote:
>
> Linux distros experience on this front is terrible. Why? Linux OS's
Because Linux-land is a bazaar and Apple-land is a cathedral. You
cannot have consistency at the user level without stability at the OS
and application framework level. Th
On Thu, February 19, 2015 22:01, Dennis Jacobfeuerborn wrote:
> On 19.02.2015 19:41, Chris Murphy wrote:
>
> Linux with a thousand knobs is never going become popular. Instead
> somebody has to go and create an opinionated system where most knobs
> are removed and replaced by sane/good/useful defa
Am 20.02.2015 um 13:53 schrieb "Phelps, Matthew" :
> Any new information here?
maybe some cooperation with the fedora community
would help to share the effort.
Tom Callaway (aka spot) is the maintainer of fedoras repo
http://copr.fedoraproject.org/coprs/spot/chromium/
https://copr-be.cloud.fed
Sorry - without the signing this time.
Hello.
Our products use CentOS 6.5 and we would like to deploy them with custom
openssh RPMs. I have downloaded the sources from
http://athena.caslab.queensu.ca/pub/OpenBSD/OpenSSH/portable and built
the RPMs, but the PAM configuration file is wrong after
On Feb 20, 2015 3:21 PM, "Christian Kittlitz" wrote:
>
>
> I was wondering if there are any build logs that would show how the
> openssh RPMs were built from the source for CentOS 6.5. Perhaps there is
> some type of configuration I am missing that would ensure that I get the
> same PAM configurat
Hi folks,
For complicated reasons, I'd like to have a service (lightdm) start
after sshd starts. (This is on CentOS 7.) I've tried adding "sshd.service"
to the lists of "Active=" and "Require=" items in
/etc/systemd/system/lightdm.service (which started as a copy of
/usr/lib/systemd/syst
On 02/19/2015 09:27 AM, Tim Dunphy wrote:
And I want to correlate that to the output of fdisk -l, so that I can feed
the disk partition I want to iostat, how would I go about that?
lvdisplay --maps /dev/mapper/MysqlVG-MysqlVol
That'll show you which PVs are used for the LV. But, just given yo
hi brian,
isn't the attribute named Requires (with an s)?
stijn
On 02/20/2015 07:50 PM, Bryan Wright wrote:
Hi folks,
For complicated reasons, I'd like to have a service (lightdm) start
after sshd starts. (This is on CentOS 7.) I've tried adding "sshd.service"
to the lists of "Acti
Stijn De Weirdt writes:
> isn't the attribute named Requires (with an s)?
You're right! But correcting that doesn't change the behavior. Sshd still
starts after lightdm.
Bryan
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailm
Hi again,
I'm starting to get to the bottom of it. It looks like the file in
/etc/systemd/system is being ignored. I noticed this when I did a:
systemctl show -p "After" lightdm.service
and saw that it didn't show sshd.service as a depencency. After editing the
original copy of lightdm.servic
So, I'm getting an error where the network service and NetworkManager
apparently don't agree on how to bring up vlans on bonded nics.
Things come up if you 'ifup ..' manually. I thought I'd check if
there were any updates, forgetting to fix what NetworkManger had done
to /etc/resolv.conf and:
htt
try CTRL-Z to put that running process in your shell to sleep, then:
bg 1
to put the process in the background. Then you can run:
killall -TERM yum
to kill all the yum processes. If that doesn't kill it after running a
couple of times, then use:
killall -9 yum
and that should do it.
Chris
Oh, and if you don't have killall installed, you can use:
ps -ef | grep yum
to get the pid and then use:
kill -TERM pid
or easier even is:
kill -TERM `pid of yum`
Chris
On Fri, Feb 20, 2015 at 4:13 PM, Chris Stone wrote:
> try CTRL-Z to put that running process in your shell to sleep, th
oops - it's Friday - that should be:
kill -TERM `pidof yum`
no space between pid and of.
Chris
On Fri, Feb 20, 2015 at 4:15 PM, Chris Stone wrote:
> Oh, and if you don't have killall installed, you can use:
>
> ps -ef | grep yum
>
> to get the pid and then use:
>
> kill -TERM pid
>
> or eas
On Fri, Feb 20, 2015 at 04:13:13PM -0700, Chris Stone wrote:
> try CTRL-Z to put that running process in your shell to sleep, then:
>
> bg 1
You're missing a % there
> killall -TERM yum
Or just "control-Z" and then 'kill -9 %1'
You don't need to background the job and then kill every process m
On Fri, Feb 20, 2015 at 5:19 PM, Stephen Harris wrote:
> On Fri, Feb 20, 2015 at 04:13:13PM -0700, Chris Stone wrote:
>> try CTRL-Z to put that running process in your shell to sleep, then:
>>
>> bg 1
>
> You're missing a % there
>
>> killall -TERM yum
>
> Or just "control-Z" and then 'kill -9 %1'
22 matches
Mail list logo