Home / Linux / Page 2

Category: Linux

How to disable or enable the IPv6 protocol in AlmaLinux?

Why errors are received when changing IPv6 kernel parameters? # sysctl -p error: "net.ipv6.conf.default.accept_redirects" is an unknown key error: "net.ipv6.conf.default.accept_ra" is an unknown key error: "net.ipv6.conf.all.disable_ipv6" is an unknown key error: "net.ipv6.conf.default.disable_ipv6" is an unknown key Internet Protocol Version 6 (IPv6) is enabled by default in AlmaLinux and CentOS. However, some users might find it …

Read more

How to configure CUPS to use ephemeral ports instead of reserved ports?

When many users are printing at once, CUPS is very slow. The following error is seen repeatedly in the file /var/log/cups/error_log. E [09/Jul/2013:10:06:00 +0200] [Job 865106] Unable to reserve port: Resource temporarily unavailable The firewall blocks connections initiated from low-numbered TCP ports (port numbers less than 1024). This blocks CUPS outgoing LPD (Line Printer Deamon) …

Read more

32-bit application not finding files on XFS filesystem

Inodes received 32-bit numbers or less under older XFS behavior, which always allocated inodes within the first 1TiB of the filesystem. With more recent XFS behavior, inode64 is the default mount option, allowing inodes to be put anywhere inside the filesystem. However, files with inode numbers greater than 32 bits may be difficult for 32-bit …

Read more

How to install rasdaemon and monitor hardware errors

To set up the hardware error reporting rasdaemon. Install the rasdaemon package first. Launch the rasdaemon service after enabling data collection in Rasdaemon. Configure the rasdaemon service to restart automatically when the computer boots up. The motherboard DIMM labels can be imported into the EDAC drivers once the service has been launched for simpler fault …

Read more

Is systemd-resolved enabled in AlmaLinux 8?

At the time of writing, the systemd-resolved service is only available as a Technology Preview on AlmaLinux 8 and AlmaLinux 9. Technology Preview features might not be complete, are not covered by SeiMaxim's production Service Level Agreements (SLAs), and SeiMaxim does not advise utilizing them in production. Customers can test functionality and offer feedback while …

Read more

File systems became read-only on virtual guests on VMware

Filesystem entered ready-only mode, and the following SCSI I/O fault incidents were recorded in syslog messages. kernel: sd 0:0:0:0: timing out command, waited 1080s kernel: sd 0:0:0:0: Unhandled error code kernel: sd 0:0:0:0: SCSI error: return code = 0x06000008 kernel: Result: hostbyte=DID_OK driverbyte=DRIVER_TIMEOUT,SUGGEST_OK If the failover occurs before the timeout, everything will proceed as usual. …

Read more

How to create custom email template in Alertmanager?

Configure your email receiver to, for example, display the email's subject in the headers section and its template-based body of text. receivers: - name: EmailReceiver - to: myaddress@example.com headers: subject: 'Summary: {{ .CommonLabels.alertname }} {{ if eq .Status "firing" }}(Firing){{ else }}(Resolved){{ end }}' html: '{{ template "emailcontent.txt" . }}' As indicated below, add the …

Read more