Search found 4515 matches

by jlehtone
2024/04/11 14:45:06
Forum: CentOS 7 - General Support
Topic: delete files via rm
Replies: 4
Views: 192

Re: delete files via rm

Default files for account are copied from /etc/skel. See ls -laR /etc/skel These you can restore by copy from /etc/skel. If you had modified them, that we can't help with. When one starts a GUI desktop session, some additional directories do get created, like "Documents" and "Downloads". New GUI ses...
by jlehtone
2024/04/10 18:20:22
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: Latest Apache Package missing
Replies: 3
Views: 247

Re: Latest Apache Package missing

How long it takes RH to incorporate these patches is unknown to me. Unknown to most of us. You can look at past CVEs and how long bugs of same severity had to wait for RHSA as rough guess. Besides, RHEL 9.4 is already in beta. It should be possible to check whether it has something for these CVEs. ...
by jlehtone
2024/04/09 13:13:16
Forum: CentOS 7 - General Support
Topic: network.service start faild
Replies: 2
Views: 204

Re: network.service start faild

The network.service is not the default. I'd check:

Code: Select all

chkconfig --list
systemctl status NetworkManager.service
... in case that was forgotten.
by jlehtone
2024/04/08 09:08:57
Forum: CentOS 7 - Software Support
Topic: X11 display variable as 0 opens on machine itself on not ssh connection
Replies: 2
Views: 810

Re: X11 display variable as 0 opens on machine itself on not ssh connection

One thing that is required is that the ssh client is told to enable the X11 forwarding: [jlehtone@here ~]$ ssh there there:0:~$ echo $DISPLAY there:0:~$ exit logout Connection to there closed. [jlehtone@here ~]$ ssh -X cotton there:0:~$ echo $DISPLAY localhost:10.0 The second thing is that there mus...
by jlehtone
2024/04/03 06:48:10
Forum: CentOS 7 - General Support
Topic: How to install libqwt-qt4.so.5
Replies: 5
Views: 447

Re: How to install libqwt-qt4.so.5

I just run "sudo yum install scidavis" and it comes with 1.2.6. Neither CentOS repos nor EPEL has that package, so you must have some additional repository. hpcoder1/opensuse? While Enterprise Linux (RHEL, CentOS, AlmaLinux, Rocky Linux, etc) is "stable" as in "updates don't break server", that doe...
by jlehtone
2024/04/03 06:18:14
Forum: CentOS 7 - General Support
Topic: Metadata Corruption detected
Replies: 16
Views: 1522

Re: Metadata Corruption detected

You are missing the "-x" (lowercase) option. Also can be specified as "--one-file-system" . If the intent is to include other filesystems too, e.g. /home, then "--one-file-system" is not the solution. How many things are in / that are not any of the {‘/dev/‘,’/proc/‘,’/sys/‘,’/tmp/‘,’/run/‘,’/mnt/‘...
by jlehtone
2024/04/02 09:41:07
Forum: CentOS 7 - Networking Support
Topic: CentOS 7 not showing wired connection as well as server not found at firefox
Replies: 13
Views: 2922

Re: CentOS 7 not showing wired connection as well as server not found at firefox

tunk wrote:
2024/04/02 08:41:30
if you have network, first install ELRepo.
I.e. run: yum install elrepo-release
tunk wrote:
2024/04/02 08:41:30
use rpm to install it
Use yum. When you have the RPM-file, run: yum install kmod-e1000e*.rpm
(If yum does not like the lack of network connection, then yum --disablerepo=* install kmod-e1000e*.rpm)
by jlehtone
2024/03/15 09:14:30
Forum: 8 /8-Stream / 9-Stream - Hardware Support
Topic: Should I buy Intel Core i5-1340P for CentOS?
Replies: 7
Views: 1384

Re: Should I buy Intel Core i5-1340P for CentOS?

I did just boot AlmaLinux 9 installer on system that has Core i5-13600 (Intel 13th Gen like the 1340P, but a desktop CPU). That short run probably did not stress-test all features of the CPU, but at least it did not fail immediately. I do have a system with AMD Ryzen 7 7800X3D and AlmaLinux 9 runs f...
by jlehtone
2024/03/13 08:56:04
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: [Closed] RHEL 9 - single kernel option at boot
Replies: 26
Views: 3931

Re: RHEL 9 - single kernel option at boot

/dev/mapper/rhel/wjoe_* Those are LVM LVs. Three of them: root, swap, and home. They were all on one LVM PV that was in partition /dev/nvme0n1p6 The kernel command-line and/or initramfs must activate the LV rhel_wjoe-root or else kernel could not mount the '/'. One can look at LVM volumes with pvs ...
by jlehtone
2024/03/12 15:11:12
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: [Closed] RHEL 9 - single kernel option at boot
Replies: 26
Views: 3931

Re: RHEL 9 - single kernel option at boot

I also ran "grub2-set-default 0" and "grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg" - because I think that's where 9.0 stored it. Just now I tried: sudo grub2-mkconfig -o /boot/grub2/grub.cfg --update-bls-cmdline On EL9 the actual grub.cfg is in /boot/grub2/ and the /boot/efi/EFI/redhat/grub.cfg...