You can download Fedora here:
$ sudo passwd root# usermod -aG wheel cheocheo must log out and log in again for the changes to take effect
There is a bug in Fedora 30 when trying to update the repository. Issue the command below only on Fedora 30:
$ sudo echo "zchunk=False" >> /etc/dnf/dnf.conf$ sudo dnf clean all$ sudo dnf updateImportant: these instructions assumes that Fedora 29 has been installed without an nVidia graphic card plugged in, in order to avoid the OS installation to setup nouveau drivers automatically. Nouveau drivers will prevent nvidia drivers from installing, so we don't want nouveau in our system.
Warning: There is a known issue with default Fedora 29 display manager GDM when installing the nvidia drivers: after login, the screen remains black. To solve this issue, follow any of these two solutions:
rhgb from line GRUB_CMDLINE_LINUX="rhgb quiet"## BIOS ##$ sudo grub2-mkconfig -o /boot/grub2/grub.cfg## UEFI ##$ sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfgInstall a different a display manager. I choose the LightDM :
$ sudo dnf install lightdmDisable GDM during the startup and enable LightDM:
$ sudo systemctl disable gdm$ sudo systemctl enable lightdmReboot:
$ sudo rebootYou can download Fedora 29 from here in case you want to perform a fresh install.
$ sudo dnf install make elfutils-libelf-develInstall the kernel headers and development packages for the currently running kernel:
$ sudo dnf install kernel-devel-$(uname -r) kernel-headers-$(uname -r)$ sudo dracut --force$ sudo systemctl set-default multi-user.target$ sudo poweroff$ sudo sh cuda_10.1.243_418.87.00_linux.run --silent --driver$ sudo systemctl set-default graphical.target$ sudo telinit 5Reboot
Check graphic drivers in use:
$ lspci -nnk | grep -i vga -A3 | grep 'in use'$ nvidia-smi$ sudo dnf install mesa-libGLU.x86_64$ unzip DaVinci_Resolve_16.0b7_Linux.zip$ sudo ./DaVinci_Resolve_16.0b7_Linux.run -iNote: The first time that Davinci Resolve 16 is launched, the welcome screen will get stuck (it will remain white). Launch "System Monitor" and end the process "DaVinci_Resolve_Welcome". Davinci Resolve 16 will get "unstuck" and open up normally.
echo 'blacklist nouveau' >> /etc/modprobe.d/disable-nouveau.confecho 'options nouveau modeset=0' >> /etc/modprobe.d/disable-nouveau.conf## Backup old initramfs nouveau image ##$ sudo mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img ## Create new initramfs image ##$ sudo dracut /boot/initramfs-$(uname -r).img $(uname -r)kernelopts=root=UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx ro rd.driver.blacklist=nouveau rhgb quietkernelopts=root=UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx ro rd.driver.blacklist=nouveau rhgb quietGRUB_CMDLINE_LINUX="... nouveau.modeset=0 rd.driver.blacklist=nouveau"## BIOS ##$ sudo grub2-mkconfig -o /boot/grub2/grub.cfg## UEFI ##$ sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfgIf you get this error:Generating grub configuration file .../usr/bin/grub2-editenv: error: environment block too small.Log in as root and do this to fix:# rm /boot/grub2/grubenv# grub2-editenv /boot/grub2/grubenv create/etc/gdm/custom.conf and uncomment WaylandEnable=false.[daemon] section:DefaultSession=gnome-xorg.desktopcustom.conf file$ sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm$ sudo dnf install ffmpeg-libs compat-ffmpeg28 gstreamer1-libav$ sudo blkid.../dev/sdc2: LABEL="Datos" UUID="368A7A9A8A7A5679" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="670e8067-f3d4-44db-a493-d69e4c9e2e9e"...$ sudo echo "UUID=368A7A9A8A7A5679 /run/media/cheo/Datos auto defaults 0 0" >> /etc/fstab1. Select the disk and the partition and then click on the gears button -> Edit Mount Options...
2. Select the options like the image below
If the OS does not boot, restart the computer and launch the advanced Fedora options -> Rescue
Then check the booting logs:
cat /var/log/boot.logAs an example, we find this issue:
[ 3.158325] dracut-pre-pivot[630]: Sep 24 22:12:52 | /etc/multipath.conf does not exist, blacklisting all devices.[ 3.158430] dracut-pre-pivot[630]: Sep 24 22:12:52 | You can run "/sbin/mpathconf --enable" to create[ 3.158539] dracut-pre-pivot[630]: Sep 24 22:12:52 | /etc/multipath.conf. See man mpathconf(8) for more detailsAs the logs shows, the file /etc/multipath.conf does not existes. As the logs suggests, we run /sbin/mpathconf --enable to create the file.