TranslateProject/sources/tech/20210705 Things to do after installing Fedora 34 Workstation.md
DarkSun 06149bb20d 选题[tech]: 20210705 Things to do after installing Fedora 34 Workstation
sources/tech/20210705 Things to do after installing Fedora 34 Workstation.md
2021-07-06 05:03:04 +08:00

8.2 KiB
Raw Blame History

Things to do after installing Fedora 34 Workstation

Using a new operating system can be a lot of fun. But it often becomes confusing when we first use it, especially for new users who are not very familiar with computer systems. For those of you who are using Fedora for the first time and have successfully installed Fedora 34 Workstation, this article can be an initial guide. Im sure that you want to feel more at home with your new fresh Fedora. These are several things to do after installing your Fedora 34 Workstation.

System update

Maybe you think that you have installed the most recent version of Fedora 34 Workstation, so your Fedora should be up to date. But you still have to make sure that your Fedora Linux has all the updated packages. Because in every new release of an operating system, usually there are still many things that continue to be improved. You can use the terminal or GNOME software to run the update.

If you want to update via the terminal, then you just have to open a terminal and type the following command.

$ sudo dnf update

But if you want to do it with GNOME Software, open the application by selecting Activities then locating and selecting the Software item in the taskbar at the bottom of the screen. When it opens select the _Update_s tab at the top. After that you just click the Download button. An update may require a restart afterwards and Update will tell you that.

GNOME Software location in the taskbar at the bottom of the screen

note: another way to select Activities is to press the super key on the keyboard. Super key is the button that has the Windows logo on most keyboards.

Gnome Software showing Updates

System settings

You can view and configure your devices system through System Settings. These include items like network, keyboard, mouse, sound, displays, etc. You can run it by pressing the super key on your keyboard, clicking Show Applications in the task bar at the bottom of the window, then selecting Settings. Configure it according to your needs.

Settings menu showing Network selected

Additional repositories

Maybe some packages you need are not available to be installed from the official Fedora Repository. You can add software repositories with the dnf config-manager command. Please be careful if you want to add other repositories besides the official Fedora repository.

The first thing you should do is define a new repository by adding a new file ending in .repo to the /etc/yum.repos.d/ directory. Run the following command in the terminal.

$ sudo dnf config-manager --add-repo /etc/yum.repos.d/file_name.repo

note: replace file_name with the repository file name.

Or you can use GNOME Software. Open it as described in the System Update section above. Now select the “hamburger” icon (three horizontal lines) on the top right and select Software Repositories. You can add the repository from there using the Install option.

GNOME Software showing location of Software Repositories menu

Most people will enable RPM Fusion. Its a third party repository. You can read about third party repositories in Fedora Docs.

Fastest mirror and Delta RPM

There are several things you can do to speed up your download times when using DNF to update your system. You can enable Fastest Mirror and Delta RPM. Edit /etc/dnf/dnf.conf using a text editor, such as gedit or nano. Heres the example to open dnf.conf file with nano in terminal.

$ sudo nano /etc/dnf/dnf.conf

Append the following line onto your dnf.conf file.

fastestmirror=true
deltarpm=true

Press ctrl+o to save the file then ctrl+x to quit from nano.

Multimedia plugins for audio and video

You may need some plugins for your multimedia needs. You can install multimedia plugins by running this command in a terminal.

$ sudo dnf group upgrade --with-optional Multimedia

Please pay attention to the regulations and standards in your country regarding multimedia codecs. You can read about this in Fedora Docs.

Tweaks and Extentions

Fedora 34 Workstation comes with GNOME as the default Desktop Environment. We can do various configurations of GNOME by using Tweaks and Extensions, like changing themes, changing buttons in the window dialog, and many more.

Open your terminal and run this command to install GNOME Tweaks.

$ sudo dnf install gnome-tweaks

And run this command to install GNOME Extensions.

$ sudo dnf install gnome-extensions-app

Do the same way as above when you search for GNOME Software. Select Activities or press the super key then select Show Applications to see a list of installed applications. You can find both applications in the list. You can do the same thing every time you want to search for installed applications. Then do the configuration with your preferences with Tweaks and Extensions.

GNOME Tweaks

GNOME Extensions

Install applications

When you first install Fedora, you will find several installed apps. You can add other applications according to your needs with GNOME Software. Do the same way to open GNOME Software as described earlier. Then find the application you want, select the application, and then press the Install button.

GNOME Software

Or you can do it with terminal. Here are the commands to find and install the application.

Command to search for available applications:

$ sudo dnf search application_name

The command to install the application:

$ sudo dnf install application_name

Commands to remove installed applications:

$ sudo dnf remove application_name

note: replace application_name with the name of the application.

You can search for installed applications by viewing them in Show Applications. Select Activities or press the super key and select Show Applications. Then you can select the application you want to run from the list.

Installed application list

Conclusion

Fedora Workstation is an easy-to-use and customizable operating system. There are many things you can do after installing Fedora 34 Workstation according to your needs. This article is just a basic guide for your first steps before you have more fun with your Fedora Linux system. You can read Fedora Docs for more detailed information. I hope you enjoy using Fedora Linux.


via: https://fedoramagazine.org/things-to-do-after-installing-fedora-34-workstation/

作者:Arman Arisman 选题:lujun9972 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出