Disable Selinux
Edit this /etc/selinux/config file and follow instructions
Edit this /etc/selinux/config file and follow instructions
By default fedora uses Wayland. Make sure the following section exists in /etc/gdm/custom.conf:
[daemon]
# Uncomment the line below to force the login screen to use Xorg
WaylandEnable=false
DefaultSession=gnome-xorg.desktop
Create TCP dump of all traffic on localhost on port 8888
sudo tcpdump -i lo "port 8888" -w dump
nohup database_migration.sh &
nohup will take care of running the command and forward command output to nohup.out& will run the command in the backgroundUse tail -f nohup.out to get the output from the command
Default Printer application in GNOME (fedora 33) is not able to successfully configure wireless printer, it needs to be done manually:
sudo dnf install hplip hplip-gui
sudo hp-setup
Select Network/Ethernet/Wireless network and your printer will appear in the list. Follow the instructions and add the printer.
To list all files installed by dnf package:
rpm -ql dnf
Top-like application to monitor performance of intel GPU:
sudo dnf install igt-gpu-tools
sudo intel_gpu_top
Playing 4k video sample on youtube (intel i3-8100T):
intel-gpu-top: Intel Coffeelake (Gen9) @ /dev/dri/card0 - 1063/1083 MHz; 1% RC6; 7.35/19.18 W; 467 irqs/s
IMC reads: 6889 MiB/s
IMC writes: 3901 MiB/s
ENGINE BUSY MI_SEMA MI_WAIT
Render/3D/0 98.29% |██████████████████████████████████▍| 0% 0%
Blitter/0 0.00% | | 0% 0%
Video/0 0.00% | | 0% 0%
VideoEnhance/0 0.00% | | 0% 0%
Playing the same video in 1080p (intel i3-8100T)::
intel-gpu-top: Intel Coffeelake (Gen9) @ /dev/dri/card0 - 591/ 591 MHz; 30% RC6; 3.06/ 6.47 W; 474 irqs/s
IMC reads: 4058 MiB/s
IMC writes: 2654 MiB/s
ENGINE BUSY MI_SEMA MI_WAIT
Render/3D/0 55.64% |███████████████████▍ | 0% 0%
Blitter/0 0.00% | | 0% 0%
Video/0 0.00% | | 0% 0%
VideoEnhance/0 0.00% | | 0% 0%
If you are experiencing high CPU usage when watching videos on youtube, verify that the following packages are installed (requires RPMFusion repository):
# RPMFuison repositories
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
# Codecs
sudo dnf install gstreamer1-plugins-{bad-\*,good-\*,base} gstreamer1-plugin-openh264 gstreamer1-libav --exclude=gstreamer1-plugins-bad-free-devel
sudo dnf install lame\* --exclude=lame-devel
sudo dnf group upgrade --with-optional Multimedia
CPU usage for i3-8100T is down from 80% to 50% with this video sample
watch -n 0.5 "ps -eLf | grep traffic_server | wc -l"