Search found 4029 matches
- 2022/06/24 13:13:42
- Forum: CentOS 7 - Software Support
- Topic: Can't restart Samba
- Replies: 4
- Views: 73
Re: Can't restart Samba
Don't forget that /lib is a symlink to /usr/lib Oh yes, that explains my last note: "/lib/libsmbconf.so.0" is "/usr/lib/libsmbconf.so.0" and that is from 32-bit samba and the 32-bit libtdb is not up to date. Reforms questions: * How can 32-bit and 64-bit versions of package end up mismatching? * Wh...
- 2022/06/24 11:40:10
- Forum: CentOS 7 - Software Support
- Topic: Can't restart Samba
- Replies: 4
- Views: 73
Re: Can't restart Samba
CentOS 7's libtdb does not have content in /usr/lib: $ rpm -ql libtdb /usr/lib64/libtdb.so.1 /usr/lib64/libtdb.so.1.3.18 That is, the libtdb.x86_64. There is also libtdb.i686: $ yum -q list libtdb Installed Packages libtdb.x86_64 1.3.18-1.el7 @base Available Packages libtdb.i686 1.3.18-1.el7 base Th...
- 2022/06/23 11:30:02
- Forum: 8 /8-Stream / 9-Stream - General Support
- Topic: How to upgrade to latest kernel with Centos 9-Stream
- Replies: 4
- Views: 162
Re: How to upgrade to latest kernel with Centos 9-Stream
A Stream is a development branch. A "trunk". About twice a year Red Hat forks a release branch from it, polishes, tests, and releases a RHEL point update. Afterwards the release branch gets fixes until next next point update is released (and for EUS branches a bit longer). The Stream 8 is the develo...
- 2022/06/21 19:35:27
- Forum: 8 /8-Stream / 9-Stream - General Support
- Topic: How to upgrade to latest kernel with Centos 9-Stream
- Replies: 4
- Views: 162
- 2022/06/21 09:56:20
- Forum: 8 /8-Stream / 9-Stream - General Support
- Topic: issue with yum install
- Replies: 2
- Views: 106
Re: issue with yum install
What do you get with yum list ansible\*
(Btw, the 'yum' is just a synonym for 'dnf'.)
(Btw, the 'yum' is just a synonym for 'dnf'.)
- 2022/06/17 06:26:41
- Forum: CentOS 7 - Security Support
- Topic: firewall confusion - what is controlling port access?
- Replies: 5
- Views: 461
Re: firewall confusion - what is controlling port access?
Yes, the default configuration of firewalld.service does use zone 'public'. The 'public' has service 'ssh'. The service 'ssh' allows traffic to port 22/tcp. You can check that and get something like: # firewall-cmd --get-active-zones public interfaces: eno1 # firewall-cmd --info-zone=public public (...
- 2022/06/15 06:22:42
- Forum: CentOS 7 - Security Support
- Topic: firewall confusion - what is controlling port access?
- Replies: 5
- Views: 461
Re: firewall confusion - what is controlling port access?
"Multiple layers of defense" A running process may listen at a port. Most of these are services. You can see who does listen what port with: sudo ss -tulpn # and filter that to see specific port: sudo ss -tulpn | grep ":22 " The running services and sessions could by seen with: systemctl status The...
- 2022/06/13 12:55:21
- Forum: CentOS 7 - General Support
- Topic: Secure Boot / Mokutil
- Replies: 4
- Views: 531
Re: Secure Boot / Mokutil
In that case you cannot use Secure Boot.ipabLEce wrote: ↑2022/06/13 06:49:21Concerning the kernel I use (https://elrepo.org/tiki/kernel-lt).
It is said "These packages are not signed for SecureBoot".
- 2022/06/07 10:43:50
- Forum: CentOS 7 - General Support
- Topic: Getting error when yum update on centos 7
- Replies: 2
- Views: 345
Re: Getting error when yum update on centos 7
I would do yum --enablerepo=* clean all, although that is probably not relevant.
More of interest might be the output of df -h /tmp
More of interest might be the output of df -h /tmp
- 2022/06/06 11:30:18
- Forum: CentOS 7 - Software Support
- Topic: Wich ISCSI package used?
- Replies: 2
- Views: 703
Re: Wich ISCSI package used?
The tool that I have used to discover targets and login to then has been 'iscsiadm'. $ which iscsiadm /sbin/iscsiadm $ rpm -qf /sbin/iscsiadm iscsi-initiator-utils-6.2.0.874-22.el7_9.x86_64 $ rpm -qcf /sbin/iscsiadm /etc/iscsi/iscsid.conf $ rpm -qlf /sbin/iscsiadm The command is in package 'iscsi-in...