Fedora/GraalVM: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{|
{|
| valign="top" |
<source lang="bash" highlight="2-6,8">
sudo su
cat << EOF >> /boot/efi/config.txt
disable_overscan=1
EOF
cat /boot/efi/config.txt
init 6
</source>


| valign="top" |
| valign="top" |
'''System Update:'''
<source lang="bash" highlight="2-7">
<source lang="bash" highlight="2-7">
sudo su
sudo su
Line 22: Line 12:
EOF
EOF
dnf update
dnf update
</source>
| valign="top" |
'''Disable Overscan:'''
<source lang="bash" highlight="2-6,8">
sudo su
cat << EOF >> /boot/efi/config.txt
disable_overscan=1
EOF
cat /boot/efi/config.txt
init 6
</source>
</source>



Revision as of 21:24, 12 November 2021

System Update:

sudo su
cat << EOF >> /etc/dnf/dnf.conf

fastestmirror=True
max_parallel_downloads=10
defaultyes=True
EOF
dnf update

Disable Overscan:

sudo su
cat << EOF >> /boot/efi/config.txt

disable_overscan=1

EOF
cat /boot/efi/config.txt
init 6

Free/Community:

sudo dnf install\
 https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release\
-$(rpm -E %fedora).noarch.rpm

Non-Free/Commercial:

sudo dnf install\
 https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree\
-release-$(rpm -E %fedora).noarch.rpm