Search found 402 matches

by drk
2020/05/26 04:44:59
Forum: CentOS 7 - Hardware Support
Topic: Try to install CentOS 7.6 on AMD Ryzen computer but ends up kernel panic
Replies: 5
Views: 3132

Re: Try to install CentOS 7.6 on AMD Ryzen computer but ends up kernel panic

7.6 is probably too old. Try 7.8. It installed on my Ryzen system.
by drk
2020/04/12 04:52:12
Forum: CentOS 7 - General Support
Topic: Radeon 5700 desktop problems
Replies: 0
Views: 305

Radeon 5700 desktop problems

Just had built: Corsair R100 case with Corsair 550Watt power, Ryzen 7 3700 8 core/16 thread, Asus Prime X570-pro, 64GB Kingston DDR4 2666 ECC ram,I think an MSI Radeon 5700 (original damaged in shipping) and a Seagate FireCuda 500GB PCIe 4.0 M.2 drive. CentOS 7.7 and 8.1 install and light up the net...
by drk
2019/11/26 04:33:32
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: Stupid nmtui questions
Replies: 1
Views: 738

Re: Stupid nmtui questions

Press the spacebar
by drk
2019/11/22 03:26:54
Forum: CentOS 6 - General Support
Topic: Configuring host and virtual mboxes/domains with IMAP
Replies: 6
Views: 1541

Re: Configuring host and virtual mboxes/domains with IMAP

Pssst, CentOS 6 was released July 10, 2011 :roll:
by drk
2019/11/16 03:09:48
Forum: CentOS 7 - Software Support
Topic: Using Postfix
Replies: 2
Views: 925

Re: Using Postfix

You have control of both sides of that equation and the answer will be in the logs.

But, sending directly from an AWS instance? I'd expect you to be blocked by a lot of mail servers unless you go through Amazon's smtp outs.
by drk
2019/11/15 05:45:40
Forum: CentOS 7 - General Support
Topic: Installing multiple servers on a CentOS operating system
Replies: 3
Views: 1019

Re: Installing multiple servers on a CentOS operating system

and you can use LVMs for your storage backing in KVM.
by drk
2019/11/14 03:32:58
Forum: CentOS Social
Topic: Copy on file with multithread
Replies: 17
Views: 7937

Re: Copy on file with multithread

When I transfer files I use pigz to compress the data and then pipe that through ssh $ tar cf - filename(s) | pigz | ssh -oCompression=no user@remote "cd /destination/directory && tar xvzf -" Usually more than one file, so tar, but tar also keeps permissions etc on the receiving machine. That gets m...
by drk
2019/10/30 05:08:42
Forum: CentOS 7 - Security Support
Topic: How can I record all login attempts?
Replies: 11
Views: 5917

Re: How can I record all attempted login attempts?

How about

Code: Select all

# last -f /var/log/btmp
that shows all bad logins via ssh on CentoS6,7,8 on systems I've looked at.
by drk
2019/02/14 05:27:29
Forum: CentOS 7 - General Support
Topic: hardware properties
Replies: 5
Views: 1464

Re: hardware properties

dmidecode too
by drk
2018/12/24 07:09:44
Forum: CentOS 7 - General Support
Topic: SSH fails after Port change on CentOS 7
Replies: 2
Views: 1026

Re: SSH fails after Port change on CentOS 7

Check the output of:

Code: Select all

semanage port --list | fgrep ssh
if it doesn't include your new sshd port then semanage is the command that you use to add it.