Mail Config
Configuring Mail under RHEL
Mail-ConfigConfiguring Mail under RHEL
Mail-ConfigIn CLI mount -t cifs //ntserver/dir -o username=user,password=pass /mnt/ntserver In /etc/fstab //ntserver/dir /mnt/ntserver cifs credentials=/root/.smbpasswd,file_mode=0777,dir_mode=0777 0 0 Then create a file /root/.smbpasswd with permissions set to 600 username=user password=pass In /etc/hosts add IP address of ntserver.
ElRepo repository has kmod-fuse package that does not need dkms system. Since kmod installation uses module aliases (something like symlinks on filesystems), it works on all installed and future kernels without the need to recompile/install even automatic one with dkms. Get started Import the public key:rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org Detailed info on the GPG key used by the…
You can get rid of those ACPI Error messages by 1. Open ‘/etc/default/grub’ in an editor with root access. In your case I believe Ubuntu uses gedit as it’s text editor Code: 2. The line with ‘GRUB_CMDLINE_LINUX_DEFAULT’, add the loglevel=3 part. The original looks like GRUB_CMDLINE_LINUX_DEFAULT=’quiet splash’ Change it to this: Code: Then save the…
In this guide I detail how to install Mozilla Firefox as a .deb package on Ubuntu 22.04 LTS or above and not as a snap app. This guide is needed because Ubuntu 22.04 and later comes with the Firefox snap package by default. The snap is the only version of Firefox included ‘out of the box’. But…
Overview In this tutorial, you will learn how to configure networking in Ubuntu 20.04 with Netplan. You will learn how to set static IP addresses, DHCP addresses, as well as how to configure DNS and Wifi. Introduced back in 18.04, April 2018, networking was redone using a new system called Netplan – a YAML based…
Mount SMB (RHEL) in /etc/fstab//ntserver/share /mnt/ntserver cifs username=vnmr1,password=password 0 0 on CLImount -t cifs //ntserver/share -o userrname=vnmr1,password=password /mnt/ntserver