ubuntu_desktop:things_to_after_installing_18.04
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu_desktop:things_to_after_installing_18.04 [2019/11/24 17:58] – peter | ubuntu_desktop:things_to_after_installing_18.04 [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 6: | Line 6: | ||
Ubuntu doesn’t come, by default, with enabling additional repositories. Before updating and upgrading your Ubuntu system must allow the additional canonical repositories. | Ubuntu doesn’t come, by default, with enabling additional repositories. Before updating and upgrading your Ubuntu system must allow the additional canonical repositories. | ||
- | * To do so, search for **Software & Update**. | + | |
+ | * In the **Other Software** tab, enable “Canonical Partners.” | ||
+ | * Now close the window, ignore if it says reload. | ||
+ | |||
+ | |||
+ | <WRAP tip> | ||
+ | Ubuntu has several repositories from where it provides software for your system. These repositories are: | ||
+ | |||
+ | * Main – Free and open-source software supported by Ubuntu team | ||
+ | * Universe – Free and open-source software maintained by the community | ||
+ | * Restricted – Proprietary drivers for devices. | ||
+ | * Multiverse – Software restricted by copyright or legal issues. | ||
+ | * Canonical Partners – Software packaged by Ubuntu for their partners | ||
+ | |||
+ | Enabling all these repositories will give you access to more software and proprietary drivers. | ||
+ | </ | ||
- | * In the **Other Software** tab, enable “Canonical Partners.” | ||
- | * Now close the window, ignore if it says reload. | ||
---- | ---- | ||
Line 39: | Line 52: | ||
Enable proprietary drivers. To install and see the availability of the proprietary drivers for your hardware, | Enable proprietary drivers. To install and see the availability of the proprietary drivers for your hardware, | ||
- | * To do so, search for **Software & Update**. | + | |
+ | * Select the **Additional Drivers** tab. | ||
+ | * Select one of the proprietary drivers that seems to be specific to your graphics card. | ||
- | * Select the **Additional Drivers** tab. | + | ----- |
- | * Select one of the proprietary drivers that seems to be specific to your graphics card. | + | ===== Customize Gnome Shell ===== |
- | ----- | + | Install the Gnome Tweak Tool. |
+ | GNOME Tweak Tool, the settings manager for GNOME lets you customize the Ubuntu desktop according to your liking. | ||
+ | |||
+ | With the GNOME Tweak tool you can accomplish the following: | ||
+ | |||
+ | * Change the look and feel of the Ubuntu Desktop Environment. | ||
+ | * Change the default fonts. | ||
+ | * Play with the Window buttons. | ||
+ | * Effectively manage all GNOME extensions. | ||
+ | * Enable/ | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install gnome-tweak-tool | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Install Gnome Shell Extensions ==== | ||
+ | |||
+ | Gnome Shell Extensions is the best tool to customize your Linux. | ||
+ | |||
+ | Run the **gnome-tweak-tool** and tweak as needed. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Change the Theme ==== | ||
+ | |||
+ | Gnome Shell Extensions is the best tool to customize your Linux. | ||
+ | |||
+ | Run the **gnome-tweak-tool** and tweak as needed. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | |||
+ | ===== Third-party Media Codecs & Extras ===== | ||
+ | |||
+ | By default, Ubuntu does not provide any media codec to play multimedia files. So to enjoy movies, music, and entertaining application, | ||
+ | |||
+ | To be able to play media files like MP#, MPEG4, AVI etc., run: | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install ubuntu-restricted-extras | ||
+ | </ | ||
+ | |||
+ | Recommend to install the free version of **libavcodec** also to avoid an issue while performing media task with video editors or transcoder. | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install libavcodec-extra | ||
+ | </ | ||
+ | |||
+ | Moreover, to enable encrypted DVD playback, you have to install **libdvd-pkg**. | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install libdvd-pkg | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Enable Night Light ===== | ||
+ | |||
+ | According to recent studys, the blue light emanating from your PC or Laptop may cause considerable amount of eye strain. | ||
+ | |||
+ | Go to menu: | ||
+ | |||
+ | Settings > Devices > Displays and toggle the Night Light on. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Install Applications ===== | ||
+ | |||
+ | |||
+ | * VLC – media player for videos | ||
+ | * GIMP – Photoshop alternative for Linux | ||
+ | * Pinta – Paint alternative in Linux | ||
+ | * Calibre – eBook management tool | ||
+ | * Chromium – Open Source web browser | ||
+ | * Kazam – Screen recorder tool | ||
+ | * Gdebi – Lightweight package installer for .deb packages | ||
+ | * Spotify – For streaming music | ||
+ | * Skype – For video messaging | ||
+ | * Kdenlive – Video editor for Linux | ||
+ | * Atom – Code editor for programming | ||
+ | * Android Studio – For Android app development | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Tweaks For Ubuntu Power Management ===== | ||
+ | |||
+ | Here are some tips, which help to get optimum output from Ubuntu Linux OS… | ||
+ | |||
+ | * Turn off WiFi and Bluetooth, when it’s not required. | ||
+ | * Reduced screen brightness to the optimum level. | ||
+ | * It’s always better to hibernate rather than suspend power features. To do so follow…Settings >> | ||
+ | * Try to disable keyboard brightness | ||
+ | |||
+ | Apart from these tips, you can follow to install TLP, which helps to keep the laptop cool and safe. | ||
+ | |||
+ | <code bash> | ||
+ | sudo add-apt-repository ppa: | ||
+ | sudo apt update | ||
+ | sudo apt install tlp tlp-rdw | ||
+ | sudo tlp start | ||
+ | </ | ||
+ | |||
+ | You can also Install Laptop Mode Tools, which helps to reduce power consumption by slowing down Hard disk speed and kernel control. To install it run the following command. | ||
+ | |||
+ | <code bash> | ||
+ | sudo add-apt-repository ppa: | ||
+ | sudo apt update | ||
+ | sudo apt install laptop-mode-tools | ||
+ | </ | ||
+ | |||
+ | After installing, get the GUI for further customization. Run the command. | ||
+ | |||
+ | <code bash> | ||
+ | gksu lmt-config-gui | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Enable Firewall and Install Antivirus ===== | ||
+ | |||
+ | Ubuntu has a firewall called UFW which is pretty good and straightforward. But you need to enable it first. You can either enable it through command or install a GUI for UFW. | ||
+ | |||
+ | To enable the firewall to execute: | ||
+ | |||
+ | <code bash> | ||
+ | sudo ufw enable | ||
+ | </ | ||
+ | |||
+ | UFW is quite intuitive to use. To disable firewall execute: | ||
+ | |||
+ | <code bash> | ||
+ | sudo ufw disable | ||
+ | </ | ||
+ | |||
+ | Managing UFW via GUI | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install gufw | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== System Cleanup ===== | ||
+ | |||
+ | You can clean partial packages using a command: | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt autoclean | ||
+ | </ | ||
+ | |||
+ | You can auto cleanup apt-cache: | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt clean | ||
+ | </ | ||
+ | |||
+ | You can clean up of any unused dependencies: | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt autoremove | ||
+ | </ | ||
+ | |||
+ | ---- |
ubuntu_desktop/things_to_after_installing_18.04.1574618330.txt.gz · Last modified: 2020/07/15 09:30 (external edit)