From f96373a507fd78b44fc28b0d24ea26bd5def8a3e Mon Sep 17 00:00:00 2001 From: lkxed Date: Fri, 20 May 2022 01:00:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E5=90=8D?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=20&=20=E6=B8=85=E7=90=86=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...Commands for Linux Users -With Examples.md | 126 ++----- ...Your GNOME Desktop Experience [Part 4].md} | 308 +++++++++-------- ... Ubuntu and Other Linux [2022 Edition].md} | 141 ++++---- ...tallation with Stunning XMonad WM Setup.md | 70 +--- ...Your GNOME Desktop Experience [Part 5].md} | 325 +++++++++--------- ...Applications (Maui) Everyone Should Try.md | 26 +- ...y GNOME 42 is the Greatest Release Ever.md | 94 +++-- ...stalling Ubuntu 22.04 [With Bonus Tip].md} | 168 ++++----- ...odon Clients for Ubuntu and Other Linux.md | 101 +++--- ...ion Based on Google Fuchsia [First Look].md} | 82 ++--- ...ora 35 Workstation (GUI and CLI Method).md | 5 +- 11 files changed, 600 insertions(+), 846 deletions(-) rename sources/tech/{20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience -Part 4.md => 20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4].md} (54%) rename sources/tech/{20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux -2022 Edition.md => 20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux [2022 Edition].md} (66%) rename sources/tech/{20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience -Part 5.md => 20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience [Part 5].md} (58%) rename sources/tech/{20220421 10 Things to Do After Installing Ubuntu 22.04 -With Bonus Tip.md => 20220421 10 Things to Do After Installing Ubuntu 22.04 [With Bonus Tip].md} (64%) rename sources/tech/{20220216 dahliaOS - A Unique Linux Distribution Based on Google Fuchsia -First Look.md => 20220502 dahliaOS – A Unique Linux Distribution Based on Google Fuchsia [First Look].md} (74%) diff --git a/sources/tech/20220128 Essential DNF Commands for Linux Users -With Examples.md b/sources/tech/20220128 Essential DNF Commands for Linux Users -With Examples.md index 5c96fc9a5a..ec683545ff 100644 --- a/sources/tech/20220128 Essential DNF Commands for Linux Users -With Examples.md +++ b/sources/tech/20220128 Essential DNF Commands for Linux Users -With Examples.md @@ -1,7 +1,7 @@ [#]: subject: "Essential DNF Commands for Linux Users [With Examples]" [#]: via: "https://www.debugpoint.com/2022/01/dnf-commands-examples/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,9 +9,9 @@ Essential DNF Commands for Linux Users [With Examples] ====== -WE GIVE YOU A QUICK REFERENCE OF ESSENTIAL DNF COMMANDS WITH EXAMPLES IN -THIS GUIDE. -### What is DNF ? +We give you a quick reference of essential dnf commands with examples in this guide. + +### What is DNF? DNF (Dandified Yum) is a package manager used in RPM based Linux systems (RHEL, [Fedora][1], etc.). It is a successor of Yum package manager (Yellowdog Update Modified). The DNF package manager is efficient on performance, memory consumption and dependency resolution issues. @@ -63,259 +63,205 @@ Now, let’s look at the above DNF commands with examples. This might be the rare scenario when DNF is not installed in an applicable Linux system. But if DNF is not installed in your RPM based distribution, you can use Yum to install DNF. ``` - yum install dnf - ``` -#### 1\. Check the version of DNF installed in your systems +#### 1. Check the version of DNF installed in your systems The following command shows the version included in your Linux system. ``` - dnf --version - ``` -#### 2\. Getting the help about DNF +#### 2. Getting the help about DNF You can easily get all the necessary DNF options and command line switches using the help option. ``` - dnf help - ``` For a specific help, say, about installation for example, you can pass the parameter as below to show that piece of help. ``` - dnf help search - ``` -#### 3\. List of Installed and Available Packages +#### 3. List of Installed and Available Packages The dnf list command gives you the list of installed and available packages. A little caution. This command may take some to execute, depending on your system state, and internet connection. Because it fetches the metadata from server. ``` - dnf list - ``` If you want a more specific list, you can use the available or installed switch to filter out the list. See below. ``` - dnf list available - ``` For installed list, use the below command. ``` - dnf list installed - ``` ![dnf installed packages][19] -#### 4\. Repository list using DNF +#### 4. Repository list using DNF There are times you want to see the list of enabled repositories in your Linux systems. With the dnf repolist command, you can achieve that. ``` - dnf repolist - ``` So, this command gives you all the enabled repo. If you want the disabled ones as well, try below command. ``` - dnf repolist all - ``` ![Repo list using DNF][20] -#### 5\. Display specific information about a package +#### 5. Display specific information about a package There are times when you need to find out details about a package. So, you can easily find that out using the below command. ``` - dnf info package_name - ``` ![Information about a specific package using DNF][21] -#### 6\. Search for any package and details about it +#### 6. Search for any package and details about it Use the following search command to find any package and their source. Replace package_name with your own. As you can see in this below example, it highlights the package and their source. It gives you the result in two sections – when name is exactly matched and also in summary/description. ``` - dnf search package_name - ``` ![Search for any package using DNF][22] -#### 7\. Find which package contains a package, value +#### 7. Find which package contains a package, value Sometimes, you require finding out which packages or sources contains a particular executable or package name. Then the dnf provides command helps. For example, you want to find out which sources contain ifconfig, then you can find it out like below example. This is one of the best feature of dnf while researching dependency problems. ``` - dnf provides package_name - ``` ![dnf provides command example][23] -#### 8\. Installing packages using DNF +#### 8. Installing packages using DNF Probably the most used command is dnf install which helps to install an application or package. The command is simple. ``` - dnf install package_name - ``` If you want to install from a specific repo, you can use the –enablerepo switch while issuing this command. ``` - dnf --enablerepo=epel install phpmyadmin - ``` -#### 9\. Installing a package that you downloaded manually +#### 9. Installing a package that you downloaded manually There are times, when you manually downloaded a .rpm package locally. And you want to install. You can install the same using localinstall command with .rpm file full qualified path. ``` - dnf localinstall your_package_name.rpm - ``` [][24] -SEE ALSO:   How to Switch Desktop Environment in Fedora - The above command should resolve all the dependencies while installing a target .rpm package. If not, one can issue the following command. ``` - dnf --nogpgcheck localinstall your_package_name.rpm - ``` Another way to install a local .rpm package is using the dnf install command. ``` - dnf install *.rpm - ``` -#### 10\. Reinstalling a package +#### 10. Reinstalling a package Reinstalling a package is simple using the reinstallation switch of DNF. ``` - dnf reinstall package_name - ``` -#### 11\. Update Check and Updating your system +#### 11. Update Check and Updating your system In an RPM based system (such as Fedora, Red Hat Linux, etc.), update is primarily handled by DNF package manager. The following four commands take care of various update scenarios, as explained below. The check-update option checks for all the update available for your system. This option also takes a package name in its parameter. However, if no package name is specified, then it checks for updates for all installed packages in your system. ``` - dnf check-update - ``` To list out all the updates in your Linux system, use the list option. ``` - dnf list updates - ``` And to install updates for your entire Linux system, issue the update option. ``` - dnf update - ``` You can also update a specific application or package by mentioning the package name as parameter to the update option. ``` - dnf update package_name - ``` -#### 12\. Downgrading a package +#### 12. Downgrading a package If you need to downgrade a package to its prior version, then you can use the downgrade option of DNF. Be very careful while issuing this command. This command erases the current version of a package and install the highest of all the prior lower version available. ``` - dnf downgrade package_name - ``` ![Downgrading a package using DNF][25] -#### 13\. Downgrade or upgrade all packages +#### 13. Downgrade or upgrade all packages The distro-sync command downgrade or upgrade all packages to the latest versions for your system enabled repos. ``` - dnf distro-sync - ``` -#### 14\. Uninstall a package +#### 14. Uninstall a package You can uninstall or remove any application or package using remove option of DNF. ``` - dnf remove application_name - ``` -#### 15\. Group operations using DNF +#### 15. Group operations using DNF One of the great feature of RPM based system is grouping of packages. A group is a collection of packages logically grouped together. It helps to install them all at one go by issuing a single command with group name. The grouplist command gives you the name of available groups. ``` - dnf grouplist - ``` ![DNF grouplist command][26] @@ -323,27 +269,21 @@ The grouplist command gives you the name of available groups. And to install a group with all packages of it, use groupinstall option with the group name. ``` - dnf groupinstall group_name - ``` Remove a group and all the packages using the groupremove option. ``` - dnf groupremove group_name - ``` -#### 16\. Clean up your system using DNF +#### 16. Clean up your system using DNF To remove all the temporary files for enabled repos in your system, use the clean option with all switch. ``` - dnf clean all - ``` If you want to remove a specific temporary file, use the various options as outlined below. @@ -351,61 +291,47 @@ If you want to remove a specific temporary file, use the various options as outl Removes cache files for repo metadata. ``` - dnf clean dbcache - ``` Remove the local cookie files that contains download time signature of the packages for each repo. ``` - dnf clean expire-cache - ``` Removes all the repo metadata. ``` - dnf clean metadata - ``` Removes any cached packages. ``` - dnf clean packages - ``` Over time, a system consumes many applications and packages installed by the user. The following autoremove option removes all the leaf packages that are installed as dependencies for any user installed applications but no longer needed. So, they can be safely removed to recover disk space. ``` - dnf autoremove - ``` ![Clean up your system using DNF][27] -#### 17\. Find out DNF command execution history +#### 17. Find out DNF command execution history If you want a list of all commands that has run using DNF since the beginning of a Linux system, then use the history option. This lists all the commands that issued until now. ``` - dnf history - ``` To view more details about a specific history, use the info option with the ID number, as shown in the above list. This is one of the amazing feature of DNF, where you can exactly find out what happened on that particular DNF command. It contains the start and end time, who ran it, what are the packages installed, updated, etc. ``` - dnf history info id_number - ``` ![DNF history command examples][28] @@ -418,12 +344,6 @@ Let me know whether this helps, or, any command you would like to add in this li _[Official DNF Command reference][29]_ -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][30], [Twitter][31], [YouTube][32], and [Facebook][33] and never miss an update! - -##### Also Read - -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/01/dnf-commands-examples/ @@ -466,7 +386,3 @@ via: https://www.debugpoint.com/2022/01/dnf-commands-examples/ [27]: https://www.debugpoint.com/wp-content/uploads/2022/01/Clean-up-your-system-using-DNF-1024x216.jpg [28]: https://www.debugpoint.com/wp-content/uploads/2022/01/DNF-history-command-examples-1024x711.jpg [29]: https://dnf.readthedocs.io/en/latest/command_ref.html -[30]: https://t.me/debugpoint -[31]: https://twitter.com/DebugPoint -[32]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[33]: https://facebook.com/DebugPoint diff --git a/sources/tech/20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience -Part 4.md b/sources/tech/20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4].md similarity index 54% rename from sources/tech/20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience -Part 4.md rename to sources/tech/20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4].md index 1bfd8a058e..0a6793baaa 100644 --- a/sources/tech/20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience -Part 4.md +++ b/sources/tech/20220204 10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4].md @@ -1,7 +1,7 @@ [#]: subject: "10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4]" [#]: via: "https://www.debugpoint.com/2022/02/best-gnome-apps-part-4/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,32 +9,29 @@ 10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4] ====== -WE GIVE YOU THE NEXT SET OF 10 GNOME APPS THAT WILL SUPERCHARGE YOUR -PRODUCTIVITY WHILE USING GNOME DESKTOP. +We give you the next set of 10 GNOME Apps that will supercharge your productivity while using GNOME Desktop. + At debugpoint.com, we highlight some unknown but useful GNOME apps over a five-part article series. The primary purpose of the series is to give these excellent little apps much-needed visibility via our readers. This helps the developer and the end-users due to increased usage of these necessary GNOME Apps and much-deserved attention. This post is Part 4 of the series. In this article, we will highlight ten necessary GNOME Apps. If you missed the last parts, you could read the other parts of this series via the below links. - * [Part 1][1] - * [Part 2][2] - * [Part 3][3] - - +* [Part 1][1] +* [Part 2][2] +* [Part 3][3] +* [Part 5][4] In this article, we covered the following list of great GNOME Apps. - * [Secrets – Password Manager][4] - * [Font Downloader][5] - * [Gaphor – UML Modeling Utility][6] - * [Hashbrown – Check Hash of your files][7] - * [Identity – Compare images and videos][8] - * [Khronos – Time Logging][9] - * [Markets – Watch Stock Markets][10] - * [Obfuscate – Redact Images][11] - * [Plots – Simple Graph Plotting][12] - * [squeekboard – On-screen keyboard for wayland][13] - - +* Secrets – Password Manager +* Font Downloader +* Gaphor – UML Modeling Utility +* Hashbrown – Check Hash of your files +* Identity – Compare images and videos +* Khronos – Time Logging +* Markets – Watch Stock Markets +* Obfuscate – Redact Images +* Plots – Simple Graph Plotting +* squeekboard – On-screen keyboard for wayland ### 10 Necessary GNOME Apps @@ -42,18 +39,18 @@ In this article, we covered the following list of great GNOME Apps. The first app that we highlight is a password manager called Secrets. This GNOME Circle app uses KeePass 0.4 format to store the password in its database. This app comes with a simple interface that gives you complete control of your password and managing them. Secret perfectly integrates with your GNOME desktop, which you can install. -![Secrets – GNOME App][14] +![Secrets][5] -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Secrets][16] +You need to [Setup Flatpak][6] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). -s - - * [Home Page][17] - * [Source Code][18] +[Install Secrets][7] +**More Details about Secrets** +* [Home Page][8] +* [Source Code][9] #### Font Downloader @@ -61,36 +58,40 @@ Installing font via terminal for new users is a bit complicated process. The nex But this app takes care of all the hassles that an average faces. You can search fonts in Google Fonts directly from its UI and install it with just a click of a button. A perfect and necessary GNOME app for your desktop. -![Font Downloader – GNOME Apps][19] +![Font Downloader][10] Here’s how to install it. -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Font Downloader][20] +You need to [Setup Flatpak][11] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home Page][21] - * [Source Code][22] +[Install Font Downloader][12] +**More details about Font Downloader** +* [Home Page][13] +* [Source Code][14] #### Gaphor – UML Modeling Utility -Out of all the GNOME apps we have covered so far, this one is one of the best apps. Named Gaphor, this application helps you design complex systems via Unified Modelling Language. It currently supports UML, SysML, RAAML and C4 languages and is fully compliant with the [UML 2 data model][23]. +Out of all the GNOME apps we have covered so far, this one is one of the best apps. Named Gaphor, this application helps you design complex systems via Unified Modelling Language. It currently supports UML, SysML, RAAML and C4 languages and is fully compliant with the [UML 2 data model][15]. It is a perfect GNOME app for students or system design professionals. -![Gaphor – GNOME Apps][24] +![Gaphor][16] -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Gaphor][25] +You need to [Setup Flatpak][17] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home Page][26] - * [Home Page (official)][27] - * [Source Code][28] +[Install Gaphor][18] +**More details about Gaphor** +* [Home Page][19] +* [Home Page (official)][20] +* [Source Code][21] #### Hashbrown – Check Hash of your files @@ -100,36 +101,36 @@ So, a hash is a way to verify whether your downloaded file is original or not. I This GNOME App – Hashbrown, does that job for you. Its unique and straightforward UI helps you to compare several hash types of a file. This app currently supports MD5, SHA-256, SHA-512 and SHA-1 hashes. A perfect and necessary utility for your GNOME desktop. -![Hashbrown – GNOME App][29] +![Hashbrown][22] -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Hashbrown][30] +You need to [Setup Flatpak][23] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Official Home Page][31] _(Fun fact: You will be amazed if you open this site. Check out by yourself!)_ - * [Home Page][32] - * [Source Code][33] +[Install Hashbrown][24] +**More details about Hashbrown** +* [Official Home Page][25] (Fun fact: You will be amazed if you open this site. Check out by yourself!) +* [Home Page][26] +* [Source Code][27] #### Identity – Compare images and videos If you need to compare multiple images or video files, you should use Identity. This GNOME app compares and gives you information about the target files. Powered by GStreamer, Identity also comes with the command line utility to compare the files. -![Identity][34] +![Identity][28] -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to install** -[Install Identity][35] +You need to [Setup Flatpak][29] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home Page][36] - * [Source Code][37] +[Install Identity][30] +**More details about Identity** - -[][2] - -SEE ALSO:   10 Perfect Apps to Improve Your GNOME Experience [Part 2] +* [Home Page][31] +* [Source Code][32] #### Khronos – Time Logging @@ -137,16 +138,18 @@ If you ever need an on-demand timer that keeps track of time while you complete It is a friendly GNOME app for those who need it. -![Khronos – GNOME App][38] +![Khronos - GNOME App][33] -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Khronos][39] +You need to [Setup Flatpak][34] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home Page][40] - * [Source Code][41] +[Install Khronos][35] +**More details about Khronos** +* [Home Page][36] +* [Source Code][37] #### Markets – Watch Stock Markets @@ -154,25 +157,25 @@ I am sure you keep track of your favourite stocks or overall investment portfoli Markets is a GNOME Circle app, and it brings a list of cool features to track stocks and helps you stay in profits. Features such as – - * Individual Stock tracking - * Create your portfolio - * Track Cryptocurrencies, commodities - * Details via Yahoo! finance - * Supported in Linux-based smartphones (Librem5, PinePhone) - * Adjust refresh rate and Dark Mode Support +* Individual Stock tracking +* Create your portfolio +* Track Cryptocurrencies, commodities +* Details via Yahoo! finance +* Supported in Linux-based smartphones (Librem5, PinePhone) +* Adjust refresh rate and Dark Mode Support +![Markets - A Necessary GNOME Apps][38] +**How to Install** -![Markets – A Necessary GNOME App][42] +You need to [Setup Flatpak][39] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - -[Install Markets][43] - - * [Home page][44] - * [Source code][45] +[Install Markets][40] +**More details about Markets** +* [Home page][41] +* [Source code][42] #### Obfuscate – Redact Images @@ -180,16 +183,18 @@ We often need to gray out or remove certain sensitive sections of any image for If you think that is too much work, try Obfuscate native app for GNOME. This GNOME Circle app helps you redact custom sections from any image and export them. This app supports all major image types. However, you can do these using LibreOffice, which requires inserting an image to the Writer document and whatnot. Try it out. -![Obfuscate – GNOME App][46] +![Obfuscate - A Necessary GNOME Apps][43] -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Obfuscate][47] +You need to [Setup Flatpak][44] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][48] - * [Source code][49] +[Install Obfuscate][45] +**More details about Obfuscate** +* [Home page][46] +* [Source code][47] #### Plots – Simple Graph Plotting @@ -197,114 +202,107 @@ If you need a quick tool to visualize those complex math formulae in nice graphs Here are some of its unique features: - * Support for trigonometric, hyperbolic, exponential and logarithmic functions, as well as arbitrary sums and products - * Ability to utilize your system hardware with the support of OpenGL - * Color Support for graphs -Easy customization of graphs with the value bar which you can increase or decrease interactively to see the graphs +* Support for trigonometric, hyperbolic, exponential and logarithmic functions, as well as arbitrary sums and products +* Ability to utilize your system hardware with the support of OpenGL +* Color Support for graphsEasy customization of graphs with the value bar which you can increase or decrease interactively to see the graphs +![Plots][48] +**How to Install** -![Plots][50] +You need to [Setup Flatpak][49] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). -You need to [Setup Flatpak][15] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - -[Install Plots][51] - - * [Home page][52] - * [Source code][53] +[Install Plots][50] +**More Details about Plots** +* [Home page][51] +* [Source code][52] #### squeekboard – On-screen keyboard for wayland The final app in this post is for only Linux mobile phones. I thought it was worth mentioning this app because of Wayland. The squeekboard is an on-screen keyboard designed for Librem5 Linux Smartphones for Wayland compositor. This GTK and Rust based application is currently under development, but most of the essential features are already implemented. -You can learn more about it in [GitLab][54]. I couldn’t find a screenshot to share with you. However, if you are interested, try it out. +You can learn more about it in [GitLab][53]. I couldn’t find a screenshot to share with you. However, if you are interested, try it out. ### Closing Notes I hope some of these necessary GNOME apps you found helpful for your daily workflow. I am sure they did. With that said, we are wrapping up Part 4 of the series. If you would like to read the other parts, you can go over them via the links below. -[Part 1][1] -[Part 2][2] -[Part 3][3] +* [Part 1][54] +* [Part 2][55] +* [Part 3][56] +* [Part 5][57] And do let me know your thoughts about this article or this series as a whole. Cheers. -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][55], [Twitter][56], [YouTube][57], and [Facebook][58] and never miss an update! - -##### Also Read - -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/02/best-gnome-apps-part-4/ 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 +[b]: https://github.com/lkxed [1]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-1/ [2]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-2/ [3]: https://www.debugpoint.com/2022/01/best-gnome-apps-part-3/ -[4]: tmp.UAQ8Cc4ZnO#secrets-password-manager -[5]: tmp.UAQ8Cc4ZnO#font-downloader -[6]: tmp.UAQ8Cc4ZnO#gaphor-uml-modeling-utility -[7]: tmp.UAQ8Cc4ZnO#hashbrown-check-hash-of-your-files -[8]: tmp.UAQ8Cc4ZnO#identity-compare-images-and-videos -[9]: tmp.UAQ8Cc4ZnO#khronos-time-logging -[10]: tmp.UAQ8Cc4ZnO#markets-watch-stock-markets -[11]: tmp.UAQ8Cc4ZnO#obfuscate-redact-images -[12]: tmp.UAQ8Cc4ZnO#plots-simple-graph-plotting -[13]: tmp.UAQ8Cc4ZnO#squeekboard-on-screen-keyboard-for-wayland -[14]: https://www.debugpoint.com/wp-content/uploads/2022/02/Secrets-GNOME-App.jpg -[15]: https://flatpak.org/setup/ -[16]: https://flathub.org/apps/details/org.gnome.World.Secrets -[17]: https://apps.gnome.org/app/org.gnome.World.Secrets/ -[18]: https://gitlab.gnome.org/World/secrets -[19]: https://www.debugpoint.com/wp-content/uploads/2022/02/Font-Downloader-GNOME-Apps.jpg -[20]: https://dl.flathub.org/repo/appstream/org.gustavoperedo.FontDownloader.flatpakref -[21]: https://apps.gnome.org/app/org.gustavoperedo.FontDownloader/ -[22]: https://github.com/GustavoPeredo/font-downloader -[23]: https://en.wikipedia.org/wiki/Unified_Modeling_Language#UML_2 -[24]: https://www.debugpoint.com/wp-content/uploads/2022/02/Gaphor-GNOME-Apps.jpg -[25]: https://dl.flathub.org/repo/appstream/org.gaphor.Gaphor.flatpakref -[26]: https://apps.gnome.org/app/org.gaphor.Gaphor/ -[27]: https://gaphor.org/ -[28]: https://github.com/gaphor/gaphor -[29]: https://www.debugpoint.com/wp-content/uploads/2022/02/Hashbrown-GNOME-App.jpg -[30]: https://dl.flathub.org/repo/appstream/dev.geopjr.Hashbrown.flatpakref -[31]: https://hashbrown.geopjr.dev/ -[32]: https://apps.gnome.org/app/dev.geopjr.Hashbrown/ -[33]: https://github.com/GeopJr/Hashbrown -[34]: https://www.debugpoint.com/wp-content/uploads/2022/02/Identity.jpg -[35]: https://dl.flathub.org/repo/appstream/org.gnome.gitlab.YaLTeR.Identity.flatpakref -[36]: https://apps.gnome.org/app/org.gnome.gitlab.YaLTeR.Identity/ -[37]: https://gitlab.gnome.org/YaLTeR/identity -[38]: https://www.debugpoint.com/wp-content/uploads/2022/02/Khronos-GNOME-App.jpg -[39]: https://dl.flathub.org/repo/appstream/io.github.lainsce.Khronos.flatpakref -[40]: https://apps.gnome.org/app/io.github.lainsce.Khronos/ -[41]: https://github.com/lainsce/khronos -[42]: https://www.debugpoint.com/wp-content/uploads/2022/02/Markets-A-Necessary-GNOME-App.jpg -[43]: https://dl.flathub.org/repo/appstream/com.bitstower.Markets.flatpakref -[44]: https://apps.gnome.org/app/com.bitstower.Markets/ -[45]: https://github.com/bitstower/markets -[46]: https://www.debugpoint.com/wp-content/uploads/2022/02/Obfuscate-GNOME-App.jpg -[47]: https://dl.flathub.org/repo/appstream/com.belmoussaoui.Obfuscate.flatpakref -[48]: https://apps.gnome.org/app/com.belmoussaoui.Obfuscate/ -[49]: https://gitlab.gnome.org/World/obfuscate/ -[50]: https://www.debugpoint.com/wp-content/uploads/2022/02/Plots-GNOME-App.jpg -[51]: https://dl.flathub.org/repo/appstream/com.github.alexhuntley.Plots.flatpakref -[52]: https://apps.gnome.org/app/com.github.alexhuntley.Plots/ -[53]: https://github.com/alexhuntley/Plots -[54]: https://gitlab.gnome.org/World/Phosh/squeekboard -[55]: https://t.me/debugpoint -[56]: https://twitter.com/DebugPoint -[57]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[58]: https://facebook.com/DebugPoint +[4]: https://www.debugpoint.com/2022/03/best-gnome-apps-part-5/ +[5]: https://www.debugpoint.com/wp-content/uploads/2022/02/Secrets-GNOME-App.jpg +[6]: https://flatpak.org/setup/ +[7]: https://flathub.org/apps/details/org.gnome.World.Secrets +[8]: https://apps.gnome.org/app/org.gnome.World.Secrets/ +[9]: https://gitlab.gnome.org/World/secrets +[10]: https://www.debugpoint.com/wp-content/uploads/2022/02/Font-Downloader-GNOME-Apps.jpg +[11]: https://flatpak.org/setup/ +[12]: https://dl.flathub.org/repo/appstream/org.gustavoperedo.FontDownloader.flatpakref +[13]: https://apps.gnome.org/app/org.gustavoperedo.FontDownloader/ +[14]: https://github.com/GustavoPeredo/font-downloader +[15]: https://en.wikipedia.org/wiki/Unified_Modeling_Language#UML_2 +[16]: https://www.debugpoint.com/wp-content/uploads/2022/02/Gaphor-GNOME-Apps.jpg +[17]: https://flatpak.org/setup/ +[18]: https://dl.flathub.org/repo/appstream/org.gaphor.Gaphor.flatpakref +[19]: https://apps.gnome.org/app/org.gaphor.Gaphor/ +[20]: https://gaphor.org/ +[21]: https://github.com/gaphor/gaphor +[22]: https://www.debugpoint.com/wp-content/uploads/2022/02/Hashbrown-GNOME-App.jpg +[23]: https://flatpak.org/setup/ +[24]: https://dl.flathub.org/repo/appstream/dev.geopjr.Hashbrown.flatpakref +[25]: https://hashbrown.geopjr.dev/ +[26]: https://apps.gnome.org/app/dev.geopjr.Hashbrown/ +[27]: https://github.com/GeopJr/Hashbrown +[28]: https://www.debugpoint.com/wp-content/uploads/2022/02/Identity.jpg +[29]: https://flatpak.org/setup/ +[30]: https://dl.flathub.org/repo/appstream/org.gnome.gitlab.YaLTeR.Identity.flatpakref +[31]: https://apps.gnome.org/app/org.gnome.gitlab.YaLTeR.Identity/ +[32]: https://gitlab.gnome.org/YaLTeR/identity +[33]: https://www.debugpoint.com/wp-content/uploads/2022/02/Khronos-GNOME-App.jpg +[34]: https://flatpak.org/setup/ +[35]: https://dl.flathub.org/repo/appstream/io.github.lainsce.Khronos.flatpakref +[36]: https://apps.gnome.org/app/io.github.lainsce.Khronos/ +[37]: https://github.com/lainsce/khronos +[38]: https://www.debugpoint.com/wp-content/uploads/2022/02/Markets-A-Necessary-GNOME-App.jpg +[39]: https://flatpak.org/setup/ +[40]: https://dl.flathub.org/repo/appstream/com.bitstower.Markets.flatpakref +[41]: https://apps.gnome.org/app/com.bitstower.Markets/ +[42]: https://github.com/bitstower/markets +[43]: https://www.debugpoint.com/wp-content/uploads/2022/02/Obfuscate-GNOME-App.jpg +[44]: https://flatpak.org/setup/ +[45]: https://dl.flathub.org/repo/appstream/com.belmoussaoui.Obfuscate.flatpakref +[46]: https://apps.gnome.org/app/com.belmoussaoui.Obfuscate/ +[47]: https://gitlab.gnome.org/World/obfuscate/ +[48]: https://www.debugpoint.com/wp-content/uploads/2022/02/Plots-GNOME-App.jpg +[49]: https://flatpak.org/setup/ +[50]: https://dl.flathub.org/repo/appstream/com.github.alexhuntley.Plots.flatpakref +[51]: https://apps.gnome.org/app/com.github.alexhuntley.Plots/ +[52]: https://github.com/alexhuntley/Plots +[53]: https://www.debugpoint.com//gitlab.gnome.org/World/Phosh/squeekboard +[54]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-1/ +[55]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-2/ +[56]: https://www.debugpoint.com/2022/01/best-gnome-apps-part-3/ +[57]: https://www.debugpoint.com/2022/03/best-gnome-apps-part-5/ diff --git a/sources/tech/20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux -2022 Edition.md b/sources/tech/20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux [2022 Edition].md similarity index 66% rename from sources/tech/20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux -2022 Edition.md rename to sources/tech/20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux [2022 Edition].md index 47ad2f916b..4753330660 100644 --- a/sources/tech/20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux -2022 Edition.md +++ b/sources/tech/20220217 Top 5 Live Streaming Application for Ubuntu and Other Linux [2022 Edition].md @@ -1,7 +1,7 @@ [#]: subject: "Top 5 Live Streaming Application for Ubuntu and Other Linux [2022 Edition]" [#]: via: "https://www.debugpoint.com/2022/02/live-streaming-applications-linux-2022/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,8 +9,8 @@ Top 5 Live Streaming Application for Ubuntu and Other Linux [2022 Edition] ====== -THIS POST LISTS THE TOP FIVE LIVE STREAMING APPLICATIONS FOR UBUNTU -LINUX WITH FEATURES, HIGHLIGHTS, DOWNLOAD DETAILS, AND COMPARISON. +This post lists the top five live streaming applications for Ubuntu Linux with features, highlights, download details, and comparison. + It is the best time to incorporate online video content for your business. Why? Because research suggests that the global online video market is growing at a rate of ~20% per year. And thanks to some excellent software from developers, it has become easy for anyone to create video content and stream them over several popular platforms such as YouTube and Twitch. If you think about it, you see you are consuming more video content today while online than text-based content. @@ -27,7 +27,9 @@ OBS Studio is the best one on this list because several reasons. The encoding is The user interface is reasonably straightforward and features rich. You can get help from third-party developed plugins to extend their functionalities, such as – mixing live tweets from Twitter on your streaming media while live streaming. However, OBS does not support multi-bitrate streaming. -![OBS Studio][1] +![OBS Studio - Live Streaming Applications for Linux][1] + +**How to Install** OBS Studio is available in all Linux Distribution’s official repositories. Detailed instruction for installations is present in the below link. @@ -35,10 +37,8 @@ OBS Studio is available in all Linux Distribution’s official repositories. Det More Information - * [Home Page][3] - * [Documentation][4] - - +* [Home Page][3] +* [Documentation][4] #### VokoscreenNG @@ -46,7 +46,9 @@ The second application we would feature in this list is VokoscreenNG. It is a fo It is available for Linux and Windows for free. -![vokoscreenNG][5] +![vokoscreenNG - Live Streaming Applications for Linux][5] + +**How to Install** You can download the compressed executable from the below link for Linux systems. Once downloaded, extract them. Then execute the binary to launch the application. @@ -54,9 +56,9 @@ Remember, this application requires X11, PulseAudio and GStreamer plugins instal [Download VokoscreenNG][6] - * [Home page][7] - +**More Information** +* [Home page][7] #### Restreamer @@ -64,52 +66,46 @@ The Restreamer application enables you to live stream videos and screencasts dir This application is feature-rich and comes with a fair list of features. Here’s a quick peek at its features: - * H.264 streaming support - * Built-in HTML5 video play - * Available for Linux, macOS, Windows and as Docker images - * Supports your own website plus YouTube, Twitchm, Facebook, Vimeo, Wowza and more - * Multiple video source support – [IP Camera][8], USB Cameram or any H.2645 streams - * Encoding and Audio source support - * Snapshots as form of JPEG support in regular interval - * Access stream status via JSON HTTP API for additional programming - - +* H.264 streaming support +* Built-in HTML5 video play +* Available for Linux, macOS, Windows and as Docker images +* Supports your own website plus YouTube, Twitchm, Facebook, Vimeo, Wowza and more +* Multiple video source support – [IP Camera][8], USB Cameram or any H.2645 streams +* Encoding and Audio source support +* Snapshots as form of JPEG support in regular interval +* Access stream status via JSON HTTP API for additional programming ![Restreamer][9] -[][10] - -SEE ALSO:   10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4] +**How to Install** The installation of Restreamer is a little tricky because it’s distributed via Docker images. You can find the instructions to install Linux, Windows, and macOS on the below link. -[Download Restreamer][11] - - * [Home Page][12] - * [Documentation][13] - * [Source Code][14] +[Download Restreamer][10] +**More Information** +* [Home Page][11] +* [Documentation][12] +* [Source Code][13] #### ffscreencast The ffscreencast is a command-line streaming application that uses the ffmpeg library. It leverages the power of ffmpeg and acts as a wrapper to it. Although it is available as a command line, you can take advantage of its powerful features such as multiple sources and recordings devices directly via the terminal. It supports multiple display setups as well. You can also overlay your camera feed on top of your desktop screencast. -![Open Streaming Platform][15] +![Open Streaming Platform - - Live Streaming Applications for Linux][14] + +**How to Install** To install this application, you need to clone the git repo and then copy the contents to /bin directory for the global execution of the `ffscreencast` command. ``` - - git clone https://github.com/cytopia/ffscreencast - cd ffscreencast - sudo cp bin/ffscreencast /usr/local/bin - +git clone https://github.com/cytopia/ffscreencastcd ffscreencastsudo cp bin/ffscreencast /usr/local/bin ``` You can run this application with `ffscreencast` command from the terminal. -[Source code & Home page][16] +[Source code & Home page][15] #### Open Streaming platforms @@ -117,31 +113,31 @@ The final application in this list is Open Streaming Platform (OSP), an open-sou This application is feature-rich and powerful when used correctly. Because of the below essential features: - * RTMP Streaming from an input source like Open Broadcast Software (OBS). - * Multiple Channels per User, allowing a single user to broadcast multiple streams at the same time without needing multiple accounts. - * Video Stream Recording and On-Demand Playback. - * Manual Video Uploading of MP4s that are sourced outside of OSP - * Video Clipping – Create Shorter Videos of Notable Moments - * Real-Time Chat Moderation by Channel Owners (Banning/Unbanning) - * Admin Controlled Adaptive Streaming - * Protected Channels – Allow Access only to the audience you want. - * Live Channels – Keep chatting and hang out when a stream isn’t on - * Webhooks – Connect OSP to other services via fully customizable HTTP requests which will pass information - * Embed your stream or video directly into another web page easily - * Share channels or videos via Facebook or Twitter quickly - * Ability to Customize the UI as a Theme for your own personal look - +* RTMP Streaming from an input source like Open Broadcast Software (OBS). +* Multiple Channels per User, allowing a single user to broadcast multiple streams at the same time without needing multiple accounts. +* Video Stream Recording and On-Demand Playback. +* Manual Video Uploading of MP4s that are sourced outside of OSP +* Video Clipping – Create Shorter Videos of Notable Moments +* Real-Time Chat Moderation by Channel Owners (Banning/Unbanning) +* Admin Controlled Adaptive Streaming +* Protected Channels – Allow Access only to the audience you want. +* Live Channels – Keep chatting and hang out when a stream isn’t on +* Webhooks – Connect OSP to other services via fully customizable HTTP requests which will pass information +* Embed your stream or video directly into another web page easily +* Share channels or videos via Facebook or Twitter quickly +* Ability to Customize the UI as a Theme for your own personal look +**How to Install** To install the Open Streaming Platform, follow the below page for detailed instructions. -[Download Open Streaming Platform][17] - - * [Home Page][18] - * [Source Code][19] - * [Documentation][20] +[Download Open Streaming Platform][16] +**More Information** +* [Home Page][17] +* [Source Code][18] +* [Documentation][19] ### Closing Notes @@ -151,25 +147,19 @@ Let me know your favourite live streaming software in the comment box below. Cheers. -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][21], [Twitter][22], [YouTube][23], and [Facebook][24] and never miss an update! - -##### Also Read - -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/02/live-streaming-applications-linux-2022/ 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 +[b]: https://github.com/lkxed [1]: https://www.debugpoint.com/wp-content/uploads/2022/02/OBS-Studio.jpg [2]: https://obsproject.com/wiki/install-instructions#linux [3]: https://obsproject.com/ @@ -179,18 +169,13 @@ via: https://www.debugpoint.com/2022/02/live-streaming-applications-linux-2022/ [7]: https://linuxecke.volkoh.de/vokoscreen/vokoscreen.html [8]: https://www.debugpoint.com/2018/08/onvifviewer-internet-camera-viewer-for-linux/ [9]: https://www.debugpoint.com/wp-content/uploads/2022/02/Restreamer.jpg -[10]: https://www.debugpoint.com/2022/02/best-gnome-apps-part-4/ -[11]: https://datarhei.github.io/restreamer/docs/installation-index.html -[12]: https://datarhei.github.io/restreamer/ -[13]: https://datarhei.github.io/restreamer/docs/index.html -[14]: https://github.com/datarhei/restreamer -[15]: https://www.debugpoint.com/wp-content/uploads/2022/02/Open-Streaming-Platform-1024x513.jpg -[16]: https://github.com/cytopia/ffscreencast -[17]: https://wiki.openstreamingplatform.com/Install/Standard -[18]: https://openstreamingplatform.com/ -[19]: https://gitlab.com/Deamos/flask-nginx-rtmp-manager -[20]: https://wiki.openstreamingplatform.com/ -[21]: https://t.me/debugpoint -[22]: https://twitter.com/DebugPoint -[23]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[24]: https://facebook.com/DebugPoint +[10]: https://datarhei.github.io/restreamer/docs/installation-index.html +[11]: https://datarhei.github.io/restreamer/ +[12]: https://datarhei.github.io/restreamer/docs/index.html +[13]: https://github.com/datarhei/restreamer +[14]: https://www.debugpoint.com/wp-content/uploads/2022/02/Open-Streaming-Platform-1024x513.jpg +[15]: https://github.com/cytopia/ffscreencast +[16]: https://wiki.openstreamingplatform.com/Install/Standard +[17]: https://openstreamingplatform.com/ +[18]: https://gitlab.com/Deamos/flask-nginx-rtmp-manager +[19]: https://wiki.openstreamingplatform.com/ diff --git a/sources/tech/20220220 Transform Your Arch Installation with Stunning XMonad WM Setup.md b/sources/tech/20220220 Transform Your Arch Installation with Stunning XMonad WM Setup.md index 12a3b4280f..5848309328 100644 --- a/sources/tech/20220220 Transform Your Arch Installation with Stunning XMonad WM Setup.md +++ b/sources/tech/20220220 Transform Your Arch Installation with Stunning XMonad WM Setup.md @@ -1,7 +1,7 @@ [#]: subject: "Transform Your Arch Installation with Stunning XMonad WM Setup" [#]: via: "https://www.debugpoint.com/2022/02/xmonad-arch-linux-setup/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,8 +9,8 @@ Transform Your Arch Installation with Stunning XMonad WM Setup ====== -THIS ARTICLE GIVES YOU A STEP-BY-STEP INSTALLATION GUIDE FOR THE XMONAD -SETUP IN ARCH LINUX WITH A CUSTOM PRE-CONFIGURED SCRIPT. +This article gives you a step-by-step installation guide for the xmonad setup in arch linux with a custom pre-configured script. + ### What is XMonad The [xmonad][1] is a dynamic tiling window manager for X Window system written in Haskell programming language. It is famous for its window automation, stability, minimal, workspace features, and more unique features. With features like – multiple display support, auto window tiling management, quick keyboard navigation, extension support, this window manager is one of the popular choices for those users who wants a productive and faster working system. @@ -25,48 +25,32 @@ You can learn more about this window manager at [https://xmon][1][ad.org/][1]. This guide assumes that you have a functional Arch Linux system ready to follow the below steps. If you want to install Arch Linux, then you can follow our guides as below: - * [How to Install Arch Linux via archinstall (recommended)][3] - * [How to Install Arch Linux (basics)][4] - - +* [How to Install Arch Linux via archinstall (recommended)][3] +* [How to Install Arch Linux (basics)][4] For this guide, we will use [Axarva’s pre-configured xmonad script][5], which comes with xmonad, Eww (Elkowars Wacky Widgets is a standalone widget system made in Rust), rofi (window switcher), tint2 (panels and taskbar) and some cool widgets. This guide is only for physical systems and not virtual machines. Using this personal script is best for novice Arch Linux users because it is unnecessary to go through the hassles of choosing and installing each of the above components and configure them separately. - * Ensure that you are logged on to the Arch Linux system as an admin user (preferable). And connected to the internet. - - - * In the terminal prompt, install the following components while in the home directory. - - +* Ensure that you are logged on to the Arch Linux system as an admin user (preferable). And connected to the internet. +* In the terminal prompt, install the following components while in the home directory. ``` - sudo pacman -Syu base-devel git nano - ``` - * Wait for the download to complete. Then clone the following [Axarva’s repo][5] from GitHub. - - +* Wait for the download to complete. Then clone the following [Axarva’s repo][5] from GitHub. ``` - git clone https://github.com/Axarva/dotfiles-2.0.git - ``` - * After the above command is complete, browse to the dotfiles-2.0 directory. Here you should see a script – `install-on-arch.sh`. Give the execute permission on this script and run. All these you can do with the below set of commands. - - +* After the above command is complete, browse to the dotfiles-2.0 directory. Here you should see a script – `install-on-arch.sh`. Give the execute permission on this script and run. All these you can do with the below set of commands. ``` - cd ./dotfiles-2.0 chmod +x ./install-on-arch.sh ./install-on-arch.sh - ``` The above script will take some time to complete. It will download all the required packages for xmonad setup in Arch Linux. And at the end, the script will compile the entire source code that you downloaded in the first step, including xmonad and other additional utilities. @@ -89,30 +73,20 @@ Congratulations if you reached this far. It’s time for some configuration. Onc Installing the xmonad window manager is not sufficient. You have to tell the Arch system where it should pick the executables and widgets. Also, you have to manually configure to tell X Windows server to execute the main xmonad binary. When you use a stacking window system (such as GNOME, KDE Plasma, etc.), the display manager (such as lightdm) takes care of this. - * Open the `~/.bashrc` file from the terminal prompt and append the $HOME/bin. - - +* Open the `~/.bashrc` file from the terminal prompt and append the $HOME/bin. ![Updating bashrc file][9] - * Open the `~/.bash_profile` file and add startx at the beginning to start the xserver when logging in. Save and exit from the file. - - +* Open the `~/.bash_profile` file and add startx at the beginning to start the xserver when logging in. Save and exit from the file. ![Updating bash_profile file][10] - * Open `~/.xinitrc` file and add `exec xmonad`. This file is new. Save the file once you add the command. - - +* Open `~/.xinitrc` file and add `exec xmonad`. This file is new. Save the file once you add the command. ![Create xinitrc file][11] - * The steps are almost complete, open the `~/dotfiles-2.0/.config/alacritty.yml` file and change the font size for the terminal to something larger than the default value of 9. This is an optional step, but it’s better to change this. Save and close the file. - - - * Exit and log in again. And if all goes well, you should see a default xmonad desktop as below. Now, if you like to configure further such as installing applications and other steps, proceed to the next step. - - +* The steps are almost complete, open the `~/dotfiles-2.0/.config/alacritty.yml` file and change the font size for the terminal to something larger than the default value of 9. This is an optional step, but it’s better to change this. Save and close the file. +* Exit and log in again. And if all goes well, you should see a default xmonad desktop as below. Now, if you like to configure further such as installing applications and other steps, proceed to the next step. ![xmonad base install in Arch Linux – before configuration][12] @@ -122,8 +96,6 @@ The default install in this process gives you a basic setup without the necessar [][13] -SEE ALSO:   How to Install yay AUR Helper in Arch Linux [Beginner’s Guide] - Here, I have compiled a list of some famous and essential software for this setup. This step is optional, and you can install something else as you wish. However, you can install using the command that follows this list. * Ristretto – Image viewer @@ -134,12 +106,8 @@ Here, I have compiled a list of some famous and essential software for this setu * Thunar – File manager * KSnip – Screenshot tool - - ``` - pacman -S gtklib firefox leafpad libreoffice thunar ksnip ristretto gimp feh gvfs polkit-gnome - ``` The gvfs and polkit-gnome packages are for Thunar and detect USB drives. @@ -201,12 +169,6 @@ With that said, I hope this guide helps you to set up your xmonad window manager Cheers. -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][19], [Twitter][20], [YouTube][21], and [Facebook][22] and never miss an update! - -##### Also Read - -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/02/xmonad-arch-linux-setup/ @@ -238,7 +200,3 @@ via: https://www.debugpoint.com/2022/02/xmonad-arch-linux-setup/ [16]: https://www.debugpoint.com/wp-content/uploads/2022/02/xmonad-performance-in-Arch-Linux-during-idle-state-1024x575.jpg [17]: https://www.debugpoint.com/wp-content/uploads/2022/02/xmonad-performance-in-Arch-Linux-during-heavy-workflow-state-1024x575.jpg [18]: https://www.debugpoint.com/tag/arch-linux -[19]: https://t.me/debugpoint -[20]: https://twitter.com/DebugPoint -[21]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[22]: https://facebook.com/DebugPoint diff --git a/sources/tech/20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience -Part 5.md b/sources/tech/20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience [Part 5].md similarity index 58% rename from sources/tech/20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience -Part 5.md rename to sources/tech/20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience [Part 5].md index ba0a15e91a..f9f723f476 100644 --- a/sources/tech/20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience -Part 5.md +++ b/sources/tech/20220305 10 Awesome Apps to Improve Your GNOME Desktop Experience [Part 5].md @@ -1,7 +1,7 @@ [#]: subject: "10 Awesome Apps to Improve Your GNOME Desktop Experience [Part 5]" [#]: via: "https://www.debugpoint.com/2022/03/best-gnome-apps-part-5/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,35 +9,31 @@ 10 Awesome Apps to Improve Your GNOME Desktop Experience [Part 5] ====== -HERE, WE SHOWCASE THE NEXT SET OF 10 GNOME APPS THAT WILL SUPERCHARGE -YOUR PRODUCTIVITY WHILE USING GNOME DESKTOP. +Here, we showcase the next set of 10 GNOME Apps that will improve your productivity while using your favourite GNOME Desktop. + At debugpoint.com, we showcase some cool and helpful GNOME apps over a five-part series. The main reason is to raise awareness about the rich GNOME ecosystems with these awesome apps. And it also helps the developers as our readers give these awesome GNOME apps much-needed recognition. This post is the final part, i.e. part 5 of the awesome GNOME app series. In this part 5, we will showcase ten applications. If you missed the last parts, you can read the other parts of this series via the below links. - * [Part 1][1] - * [Part 2][2] - * [Part 3][3] - * [Part 4][4] - - +* [Part 1][1] +* [Part 2][2] +* [Part 3][3] +* [Part 4][4] In this article, we covered the following list of awesome GNOME Apps. - * [Podcasts – podcasts client][5] - * [Tootle – Mastodon client][6] - * [Tangram – Web App Browser][7] - * [Wike – Wikipedia browser for desktop][8] - * [Devhelp – API Search for developers][9] - * [Lorem – Random text generator][10] - * [Rnote – Whiteboard drawing app][11] - * [Frogr – Flickr Client][12] - * [GTG – Personal task and to-do manager][13] - * [Recipes – Cooking guide][14] - - +* Podcasts – podcasts client +* Tootle – Mastodon client +* Tangram – Web App Browser +* Wike – Wikipedia browser for desktop +* Devhelp – API Search for developers +* Lorem – Random text generator +* Rnote – Whiteboard drawing app +* Frogr – Flickr Client +* GTG – Personal task and to-do manager +* Recipes – Cooking guide ### 10 Awesome GNOME Apps @@ -47,25 +43,25 @@ We all love Podcasts, and it’s still going strong. Podcasts are native GNOME a Here’s a quick summary of the features: - * Nice and clean user interface UI - * Play, update and complete management of your podcasts from UI - * Well, integration with GNOME Desktop such as notifications. - * Bookmark your listening to start listening over again - * Support of RSS/Atop for podcasting service via Soundcloud and iTunes - * Import option via OPML files +* Nice and clean user interface UI +* Play, update and complete management of your podcasts from UI +* Well, integration with GNOME Desktop such as notifications. +* Bookmark your listening to start listening over again +* Support of RSS/Atop for podcasting service via Soundcloud and iTunes +* Import option via OPML files +![Podcasts App][5] +**How to Install** -![Podcasts App][15] +You need to [Setup Flatpak][6] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - -[Install Podcast][17] - - * [Home page][18] - * [Source code][19] +[Install Podcast][7] +**More details about Podcasts** +* [Home page][8] +* [Source code][9] #### Tootle – Mastodon client @@ -73,65 +69,69 @@ The next app we would like to feature is Tootle – a Mastodon client for the GN This application well integrates with the GNOME desktop and comes with a Flatpak build for installation. -![Tootle][20] +![Tootle][10] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Tootle][21] +You need to [Setup Flatpak][11] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][22] - * [Source code][23] +[Install Tootle][12] +**More details about Tootle** +* [Home page][13] +* [Source code][14] #### Tangram – Web app browser This application is one of my favourites. And I am sure it would be for you as well. Tangram is a browser for Web Apps. Web Apps behaves as desktop apps for your favourite websites. So, using Tangram, you can manage your multiple web applications together with its unique vertical tab browser. -Each of the tabs is persistent and independent. That means, for example, you can open multiple Google accounts together in separate tabs without worrying about login conflicts or expiry. You can also group the type of web apps using this application. Suppose you would like to group all messager applications such as WhatsApp, Facebook Meeesagner & Telegram. In that case, you can do that quickly, and it’s easier for you to monitor and be productive. +Each of the tabs is persistent and independent. That means, for example, you can open multiple Google accounts together in separate tabs without worrying about login conflicts or expiry. You can also group the type of web apps using this application. Suppose you would like to group all messager applications such as WhatsApp, Facebook Meeesagner & Telegram. In that case, you can do that quickly, and it’s easier for you to monitor and be productive. If used and appropriately configured, Tangram can reduce digital notification overhead in your mobile, save time and eventually help you focus more. -![Tangram][24] +![Tangram - an awesome GNOME app for all][15] + +**How to Install** You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). -[Install Tangram][25] - - * [Home page][26] - * [Source code][27] +[Install Tangram][17] +**More details about Tangram** +* [Home page][18] +* [Source code][19] #### Wike – Wikipedia Browser We all love Wikipedia. There is a GNOME native application to browse Wikipedia, right from your desktop if I tell you. The app’s name is Wike, and it comes with the below set of features. - * Open multiple articles in tabs - * Multiple languages - * Search suggestions - * List of recent articles - * Simple bookmarks management - * Text search in articles - * Article table of contents - * View article in other languages - * GNOME Shell search integration - * Light, dark and sepia themes - - +* Open multiple articles in tabs +* Multiple languages +* Search suggestions +* List of recent articles +* Simple bookmarks management +* Text search in articles +* Article table of contents +* View article in other languages +* GNOME Shell search integration +* Light, dark and sepia themes I am sure you can get the most out of Wikipedia for your research, knowledge gathering, or work with the above features. -![Wike – an awesome GNOME app][28] +![Wike - an awesome GNOME app][20] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Wike][29] +You need to [Setup Flatpak][21] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][30] - * [Source code][30] +[Install Wike][22] +**More details about Wike** +* [Home page][23] +* [Source code][24] #### Devhelp – API Browser @@ -139,22 +139,20 @@ The next app we would like to highlight is Devhelp. As its name says, this deskt By default, it comes with GTK-doc, i.e. GTK documentation are available as per the installations. However, you can configure it for other development languages provided; you have the API documentation HTML and *.devhelp2 index file is generated. -[][31] - -SEE ALSO:   Top 10 KDE Plasma Hidden Feature That You Didn't Know About - A fantastic tool, I must say. -![Devhelp][32] +![Devhelp][25] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install devhelp][33] +You need to [Setup Flatpak][26] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][34] - * [Source code][35] +[Install devhelp][27] +**More details about Devhelp** +* [Home page][28] +* [Source code][29] #### Lorem – Random Text Generator @@ -162,32 +160,36 @@ We often need placeholder text for various needs. And for that, the famous “Lo This GNOME app, named Lorem, does just that. Based on your input, it can generate blocks of text that you can easily copy and use for your work. -![Lorem][36] +![Lorem][30] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Lorem][37] +You need to [Setup Flatpak][31] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][38] - * [Source code][39] +[Install Lorem][32] +**More details about Lorem** +* [Home page][33] +* [Source code][34] #### Rnote – Whiteboard Tool Rnote is an excellent application for taking handwritten notes via touch devices. This application is vector image-based and helps to draw annotate pictures and PDFs. It brings native .rnote file format with import/export options for png, jpeg, SVG and PDF. -One of the cool features of Rnote is that it supports [Xournal++ file format][40] support which makes it a must-have tool. +One of the cool features of Rnote is that it supports [Xournal++ file format][35] support which makes it a must-have tool. -![Rnote – Whiteboard Application for Linux based on GTK4 and Rust][41] +![Rnote – Whiteboard Application for Linux based on GTK4 and Rust][36] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Rnote][42] +You need to [Setup Flatpak][37] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Source code][43] +[Install Rnote][38] +**More details about Rnote** +* [Source code][39] #### Frogr – Flickr Client @@ -195,33 +197,37 @@ If you still love and use the image hosting platform Flickr, then Frogr is the t It is a perfect application for those whose workflow deals with heavy photo management and doesn’t want to deal with web browsers. -![Frogr][44] +![Frogr][40] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Frogr][45] +You need to [Setup Flatpak][41] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][46] - * [Source code][47] +[Install Frogr][42] +**More details about Frogr** +* [Home page][43] +* [Source code][44] #### GTG – Getting Things GNOME: To do manager -Are you procrastinating too much or having trouble finishing small to larger tasks in your day to day life. Then this next application is perfect for you. GTG, aka Getting Things Gnome, is one of the best personal tasks and to-do managers and organizers for GNOME Desktop. It is inspired by the [Getting Things Done methodology][48] and brings more features to manage your time while accomplishing tasks perfectly. +Are you procrastinating too much or having trouble finishing small to larger tasks in your day to day life. Then this next application is perfect for you. GTG, aka Getting Things Gnome, is one of the best personal tasks and to-do managers and organizers for GNOME Desktop. It is inspired by the[Getting Things Done methodology][45] and brings more features to manage your time while accomplishing tasks perfectly. GTG user interface is neat with flexibility that helps you create and manage tasks with tagging, dependencies, colour codes, search, and many search features. If you have not tried this app yet, you should check it out. -![GTG][49] +![GTG][46] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install GTG][50] +You need to [Setup Flatpak][47] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][51] - * [Documentation][52] +[Install GTG][48] +**More details about GTG** +* [Home page][49] +* [Documentation][50] #### Recipes – Cooking helper @@ -231,16 +237,18 @@ Right from its user interface, you can discover what to cook today, tomorrow or Interested? Here’s how to install it. -![Recipes][53] +![Recipes][51] -You need to [Setup Flatpak][16] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). +**How to Install** -[Install Recipes][54] +You need to [Setup Flatpak][52] for your Linux distribution. And then click on the below button to launch the native software manager to install (such as Software or Discover). - * [Home page][55] - * [Source code][56] +[Install Recipes][53] +**More details about Recipes** +* [Home page][54] +* [Source code][55] ### Closing Notes @@ -248,90 +256,83 @@ This concludes part 5 and the GNOME Apps series. I hope you get to know many unk If you missed the previous stories, you could read them here. -[Part 1][1] – [Part 2][2] – [Part 3][3] – [Part 4][4] +[Part 1][56] – [Part 2][57] – [Part 3][58] – [Part 4][59] And finally, do let me know your comments, suggestions, or anything in the comment box below. And stay tuned for the next series on a different topic. Cheers. -_Some image credit: GNOME and respective developers_ - -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][57], [Twitter][58], [YouTube][59], and [Facebook][60] and never miss an update! - -##### Also Read +*Some image credit: GNOME and respective developers* -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/03/best-gnome-apps-part-5/ 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 +[b]: https://github.com/lkxed [1]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-1/ [2]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-2/ [3]: https://www.debugpoint.com/2022/01/best-gnome-apps-part-3/ [4]: https://www.debugpoint.com/2022/02/best-gnome-apps-part-4/ -[5]: tmp.LpD9K2ZERp#podcasts -[6]: tmp.LpD9K2ZERp#tootle -[7]: tmp.LpD9K2ZERp#tangram -[8]: tmp.LpD9K2ZERp#wike -[9]: tmp.LpD9K2ZERp#devhelp -[10]: tmp.LpD9K2ZERp#lorem -[11]: tmp.LpD9K2ZERp#rnote -[12]: tmp.LpD9K2ZERp#frogr -[13]: tmp.LpD9K2ZERp#gtg -[14]: tmp.LpD9K2ZERp#recipes -[15]: https://www.debugpoint.com/wp-content/uploads/2022/03/Podcasts-App-1024x579.jpg +[5]: https://www.debugpoint.com/wp-content/uploads/2022/03/Podcasts-App.jpg +[6]: https://flatpak.org/setup/ +[7]: https://dl.flathub.org/repo/appstream/org.gnome.Podcasts.flatpakref +[8]: https://wiki.gnome.org/Apps/Podcasts +[9]: https://gitlab.gnome.org/World/podcasts +[10]: https://www.debugpoint.com/wp-content/uploads/2022/03/Tootle.jpg +[11]: https://flatpak.org/setup/ +[12]: https://dl.flathub.org/repo/appstream/com.github.bleakgrey.tootle.flatpakref +[13]: https://apps.gnome.org/app/com.github.bleakgrey.tootle/ +[14]: https://github.com/bleakgrey/tootle +[15]: https://www.debugpoint.com/wp-content/uploads/2022/03/Tangram-1024x573.jpg [16]: https://flatpak.org/setup/ -[17]: https://dl.flathub.org/repo/appstream/org.gnome.Podcasts.flatpakref -[18]: https://wiki.gnome.org/Apps/Podcasts -[19]: https://gitlab.gnome.org/World/podcasts -[20]: https://www.debugpoint.com/wp-content/uploads/2022/03/Tootle.jpg -[21]: https://dl.flathub.org/repo/appstream/com.github.bleakgrey.tootle.flatpakref -[22]: https://apps.gnome.org/app/com.github.bleakgrey.tootle/ -[23]: https://github.com/bleakgrey/tootle -[24]: https://www.debugpoint.com/wp-content/uploads/2022/03/Tangram-1024x573.jpg -[25]: https://dl.flathub.org/repo/appstream/re.sonny.Tangram.flatpakref -[26]: https://apps.gnome.org/app/re.sonny.Tangram/ -[27]: https://github.com/sonnyp/Tangram -[28]: https://www.debugpoint.com/wp-content/uploads/2022/03/Wike-an-awesome-GNOME-app.jpg -[29]: https://dl.flathub.org/repo/appstream/com.github.hugolabe.Wike.flatpakref -[30]: https://hugolabe.github.io/Wike/ -[31]: https://www.debugpoint.com/2021/12/kde-plasma-hidden-feature/ -[32]: https://www.debugpoint.com/wp-content/uploads/2022/03/Devhelp-1024x574.jpg -[33]: https://dl.flathub.org/repo/appstream/org.gnome.Devhelp.flatpakref -[34]: https://apps.gnome.org/app/org.gnome.Devhelp/ -[35]: https://gitlab.gnome.org/GNOME/devhelp -[36]: https://www.debugpoint.com/wp-content/uploads/2022/03/Lorem.jpg -[37]: https://dl.flathub.org/repo/appstream/org.gnome.design.Lorem.flatpakref -[38]: https://apps.gnome.org/app/org.gnome.design.Lorem/ -[39]: https://gitlab.gnome.org/World/design/lorem -[40]: https://www.debugpoint.com/2022/02/top-whiteboard-applications-linux/ -[41]: https://www.debugpoint.com/wp-content/uploads/2022/02/Rnote-Whiteboard-Application-for-Linux-based-on-GTK4-and-Rust-1024x576.jpg -[42]: https://dl.flathub.org/repo/appstream/com.github.flxzt.rnote.flatpakref -[43]: https://github.com/flxzt/rnote -[44]: https://www.debugpoint.com/wp-content/uploads/2022/03/Frogr.jpg -[45]: https://flathub.org/repo/appstream/org.gnome.frogr.flatpakref -[46]: https://wiki.gnome.org/Apps/Frogr -[47]: https://gitlab.gnome.org/GNOME/frogr -[48]: https://en.wikipedia.org/wiki/Getting_Things_Done -[49]: https://www.debugpoint.com/wp-content/uploads/2022/03/GTG-1024x669.jpg -[50]: https://dl.flathub.org/repo/appstream/org.gnome.GTG.flatpakref -[51]: https://wiki.gnome.org/Apps/GTG -[52]: https://fortintam.com/gtg/user_manual/ -[53]: https://www.debugpoint.com/wp-content/uploads/2022/03/Recepies.jpg -[54]: https://gitlab.gnome.org/GNOME/recipes/raw/master/flatpak/gnome-recipes.flatpakref -[55]: https://wiki.gnome.org/Apps/Recipes -[56]: https://gitlab.gnome.org/GNOME/recipes/ -[57]: https://t.me/debugpoint -[58]: https://twitter.com/DebugPoint -[59]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[60]: https://facebook.com/DebugPoint +[17]: https://dl.flathub.org/repo/appstream/re.sonny.Tangram.flatpakref +[18]: https://apps.gnome.org/app/re.sonny.Tangram/ +[19]: https://github.com/sonnyp/Tangram +[20]: https://www.debugpoint.com/wp-content/uploads/2022/03/Wike-an-awesome-GNOME-app.jpg +[21]: https://flatpak.org/setup/ +[22]: https://dl.flathub.org/repo/appstream/com.github.hugolabe.Wike.flatpakref +[23]: https://hugolabe.github.io/Wike/ +[24]: https://hugolabe.github.io/Wike/ +[25]: https://www.debugpoint.com/wp-content/uploads/2022/03/Devhelp.jpg +[26]: https://flatpak.org/setup/ +[27]: https://dl.flathub.org/repo/appstream/org.gnome.Devhelp.flatpakref +[28]: https://apps.gnome.org/app/org.gnome.Devhelp/ +[29]: https://gitlab.gnome.org/GNOME/devhelp +[30]: https://www.debugpoint.com/wp-content/uploads/2022/03/Lorem.jpg +[31]: https://flatpak.org/setup/ +[32]: https://dl.flathub.org/repo/appstream/org.gnome.design.Lorem.flatpakref +[33]: https://apps.gnome.org/app/org.gnome.design.Lorem/ +[34]: https://gitlab.gnome.org/World/design/lorem +[35]: https://www.debugpoint.com/2022/02/top-whiteboard-applications-linux/ +[36]: https://www.debugpoint.com/wp-content/uploads/2022/02/Rnote-Whiteboard-Application-for-Linux-based-on-GTK4-and-Rust.jpg +[37]: https://flatpak.org/setup/ +[38]: https://dl.flathub.org/repo/appstream/com.github.flxzt.rnote.flatpakref +[39]: https://github.com/flxzt/rnote +[40]: https://www.debugpoint.com/wp-content/uploads/2022/03/Frogr.jpg +[41]: https://flatpak.org/setup/ +[42]: https://flathub.org/repo/appstream/org.gnome.frogr.flatpakref +[43]: https://wiki.gnome.org/Apps/Frogr +[44]: https://gitlab.gnome.org/GNOME/frogr +[45]: https://en.wikipedia.org/wiki/Getting_Things_Done +[46]: https://www.debugpoint.com/wp-content/uploads/2022/03/GTG.jpg +[47]: https://flatpak.org/setup/ +[48]: https://dl.flathub.org/repo/appstream/org.gnome.GTG.flatpakref +[49]: https://wiki.gnome.org/Apps/GTG +[50]: https://www.debugpoint.com//fortintam.com/gtg/user_manual/ +[51]: https://www.debugpoint.com/wp-content/uploads/2022/03/Recepies.jpg +[52]: https://flatpak.org/setup/ +[53]: https://gitlab.gnome.org/GNOME/recipes/raw/master/flatpak/gnome-recipes.flatpakref +[54]: https://wiki.gnome.org/Apps/Recipes +[55]: https://gitlab.gnome.org/GNOME/recipes/ +[56]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-1/ +[57]: https://www.debugpoint.com/2021/12/best-gnome-apps-part-2/ +[58]: https://www.debugpoint.com/2022/01/best-gnome-apps-part-3/ +[59]: https://www.debugpoint.com/2022/02/best-gnome-apps-part-4/ diff --git a/sources/tech/20220308 Top Nitrux Applications (Maui) Everyone Should Try.md b/sources/tech/20220308 Top Nitrux Applications (Maui) Everyone Should Try.md index 51c0f78410..3a16e7978c 100644 --- a/sources/tech/20220308 Top Nitrux Applications (Maui) Everyone Should Try.md +++ b/sources/tech/20220308 Top Nitrux Applications (Maui) Everyone Should Try.md @@ -1,7 +1,7 @@ [#]: subject: "Top Nitrux Applications (Maui) Everyone Should Try" [#]: via: "https://www.debugpoint.com/2022/03/top-nitrux-maui-applications/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,8 +9,8 @@ Top Nitrux Applications (Maui) Everyone Should Try ====== -THIS ARTICLE SHOWCASES SOME OF THE EXCELLENT MAUI NATIVE APPLICATIONS -THAT COME AS DEFAULT IN NITRUX OS LINUX DISTRIBUTION. +This article showcases some of the excellent maui native applications that come as default in nitrux os linux distribution. + ### What is Maui Apps and Nitrux OS [Nitrux][1] is a Linux Distribution and a complete operating system based on Debian with the power NX Desktop, which uses KDE Plasma and Mauikit components. It is one of the beautiful Linux distributions today, giving you the best looks and performance. @@ -56,8 +56,6 @@ Other features that make it a most desirable text editors are – * Autosave * Supports dark and light themes - - This text editor reminds me of the great Gedit, which is [not a default editor anymore][7] in GNOME. Gedit [has all the features][8] of this text editor via plugins. ![Nota Text Editor][9] @@ -76,8 +74,6 @@ The [Clip][12] is the convergence video player for desktop and mobile phones tha [][13] -SEE ALSO:   10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4] - ##### Quick features of Clip * Local, network and internet streaming playback (limited) @@ -86,8 +82,6 @@ SEE ALSO:   10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4] * Subtitles support * Based on the MPV video player - - ![Clip Video Player][14] #### Station – Terminal @@ -120,8 +114,6 @@ You can view the image metadata and basic image edition as well. The image editi * Supports layers * Cropping and rotating - - However, you can not annotate with arrows or add any texts into the image. ![Pix Image Viewer][20] @@ -156,14 +148,6 @@ So, what is your favourite application on this list? Let me know in the comment Cheers. -_Some image credits – Maui, Nitrux team._ - -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][22], [Twitter][23], [YouTube][24], and [Facebook][25] and never miss an update! - -##### Also Read - -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/03/top-nitrux-maui-applications/ @@ -198,7 +182,3 @@ via: https://www.debugpoint.com/2022/03/top-nitrux-maui-applications/ [19]: https://mauikit.org/apps/pix/ [20]: https://www.debugpoint.com/wp-content/uploads/2022/03/Pix-Image-Viewer.jpg [21]: https://www.debugpoint.com/wp-content/uploads/2022/03/Downlaod-Nitrux-Maui-application-appimage-and-apk-files-1024x584.jpg -[22]: https://t.me/debugpoint -[23]: https://twitter.com/DebugPoint -[24]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[25]: https://facebook.com/DebugPoint diff --git a/sources/tech/20220323 10 Features Why GNOME 42 is the Greatest Release Ever.md b/sources/tech/20220323 10 Features Why GNOME 42 is the Greatest Release Ever.md index 439fe050a0..f0e0fcc130 100644 --- a/sources/tech/20220323 10 Features Why GNOME 42 is the Greatest Release Ever.md +++ b/sources/tech/20220323 10 Features Why GNOME 42 is the Greatest Release Ever.md @@ -1,7 +1,7 @@ [#]: subject: "10 Features Why GNOME 42 is the Greatest Release Ever" [#]: via: "https://www.debugpoint.com/2022/03/gnome-42-release/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,47 +9,47 @@ 10 Features Why GNOME 42 is the Greatest Release Ever ====== -WE THINK THESE GNOME 42 RELEASE FEATURES MAKE IT ONE OF THE GREAT -RELEASES IN GNOME’S HISTORY. HERE’S WHY. -The GNOME Desktop is the most widely used desktop environment today. And it is probably the only desktop that new users to Linux experience for the first time. GNOME is the default desktop environment for Ubuntu and Fedora Linux. Hence its user base is in millions.  +We think these GNOME 42 release features make it one of the great releases in GNOME’s history. Here’s why. -The upcoming GNOME 42 releases soon. And perhaps it’s one of the best releases so far in terms of new features, adoption of modern tech and moving away from the legacy codebase.  +The GNOME Desktop is the most widely used desktop environment today. And it is probably the only desktop that new users to Linux experience for the first time. GNOME is the default desktop environment for Ubuntu and Fedora Linux. Hence its user base is in millions. + +The upcoming GNOME 42 releases soon. And perhaps it’s one of the best releases so far in terms of new features, adoption of modern tech and moving away from the legacy codebase. The core, look and feel under the hood changes – everything looks different for new and experienced users. ![GNOME 42 Desktop][1] -In this article, we would like to give you a tour of 10 features of GNOME 42, which makes it a significant release.  +In this article, we would like to give you a tour of 10 features of GNOME 42, which makes it a significant release. ### Great Features of GNOME 42 Release -#### 1\. Libadwaita and GTK4 +#### 1. Libadwaita and GTK4 The libadwaita library is the modern building block for GTK4 applications. It’s the GTK4 port of the libhandy library that defines the visual language of the GNOME desktop. The adoption of libadwaita is complex, and it impacts almost every modules component of the modern GNOME desktop, including the native applications. Imagine how difficult it is for a complete libadwaita and GTK4 adoption in development efforts, testing and other regressions. The work started in GNOME 41 is now nearing completion in this GNOME 42 release. But what are the changes? -The libadwaita and GTK4 changes are visible in every user interface of the entire desktop. For example, you can see the flat buttons, well-justified labels, new colours, rounded corners, refined controls, etc.  +The libadwaita and GTK4 changes are visible in every user interface of the entire desktop. For example, you can see the flat buttons, well-justified labels, new colours, rounded corners, refined controls, etc. Hence, from Files to Web, the Shell controls, menu items – everything would look stunning with libadwaita and GTK4 in the GNOME 42 release. -#### 2\. Updated GNOME Shell Theme +#### 2. Updated GNOME Shell Theme The GNOME default Shell theme changed in several places. In this release, those items’ menus, notifications, and overall look are more compact. -The menu items at the top bar, such as the Calendar or the system tray menu, are now closer to the top bar. The spacing between the text and options inside the menu is decreased.  +The menu items at the top bar, such as the Calendar or the system tray menu, are now closer to the top bar. The spacing between the text and options inside the menu is decreased. ![GNOME 42 Shell updates][2] -The on-screen display notifications are changed. Earlier, it used to be the large boxes with notification labels that are now changed to “pills” with a lesser display footprint.  +The on-screen display notifications are changed. Earlier, it used to be the large boxes with notification labels that are now changed to “pills” with a lesser display footprint. ![Revamped OSD and menu in GNOME 42][3] And also, some inside performance boost makes GNOME 42 much faster than its predecessors. -#### 3\. Adaptive Dark Theme +#### 3. Adaptive Dark Theme -If you love dark themes and want your app to honour the system’s dark look, you are in for a treat. The GNOME 42, with the help of libadwaita, brings native dark mode for all the supported applications.  +If you love dark themes and want your app to honour the system’s dark look, you are in for a treat. The GNOME 42, with the help of libadwaita, brings native dark mode for all the supported applications. If you choose a dark theme for GNOME Shell, the apps also follow that shell’s system style. @@ -59,33 +59,29 @@ For example, if you choose the below option in the new Text editor, it changes t However, this feature needs to be implemented by the app developer to consume the exposed Shell settings. -#### 4\. Revamped System Settings with new Appearances +#### 4. Revamped System Settings with new Appearances -The fulcrum of the entire GNOME desktop is its settings window. From the settings window, you can tweak most of the desktop behaviour. The setting application itself is a complex app, and it’s ported to libadwaita. So, the looks of it changed with new styled widgets and controls.  +The fulcrum of the entire GNOME desktop is its settings window. From the settings window, you can tweak most of the desktop behaviour. The setting application itself is a complex app, and it’s ported to libadwaita. So, the looks of it changed with new styled widgets and controls. -One of the vital changes in the Settings window is the new Appearance page. This page gives you the option to view and toggle the desktop theme between light and dark.  +One of the vital changes in the Settings window is the new Appearance page. This page gives you the option to view and toggle the desktop theme between light and dark. The Sharing page in the settings window gives you a redesigned remote desktop dialog showing options and preferences for remote desktop connection via RDP (not VNC). ![Appearance page in Settings][5] -#### 5\. Wallpaper that switches automatically with theme +#### 5. Wallpaper that switches automatically with theme The above appearance page in settings also gives you a nice side-by-side look of the light and dark version. And when you change the system theme, the wallpaper also changes automatically! This is by far the most remarkable feature that GNOME 42 release brings. -[][6] +#### 6. Files icon change -SEE ALSO:   10 Things To Do After Installing Linux Mint 19 - Tara - -#### 6\. Files icon change - -The default folder icons in Files (Nautilus) didn’t change for many years. In my opinion, everything changed over the years, but this piece remains the same. In GNOME 42, the folder icons colour in the Files file manager changes to light blue.  +The default folder icons in Files (Nautilus) didn’t change for many years. In my opinion, everything changed over the years, but this piece remains the same. In GNOME 42, the folder icons colour in the Files file manager changes to light blue. Arguably, blue might not be the best colour considering every aspect. But blue still goes well with GNOME’s default wallpaper and other component pallets. And a change to the default Files look is always welcome. -![Files with new color folders in GNOME 42][7] +![Files with new color folders in GNOME 42][6] -#### 7\. A brand new text editor +#### 7. A brand new text editor A new Text Editor replaces the famous and fabulous Gedit in GNOME 42. The Gedit is a powerful and time-tested utility, and replacing all of its functionality takes time. The new Text Editor is built in GTK4 from scratch and brings some outstanding features, including built-in themes and light and dark mode. More features are expected to arrive in Text Editor in future. @@ -93,70 +89,60 @@ To be clear, Gedit doesn’t go away. It’s still there in the respective Linux You can read our exclusive piece on Gedit and GNOME Text Editor below. -[Features about GNOME Text Editor][8] +[Features about GNOME Text Editor][7] -[Why Gedit is the great text editor][9] +[Why Gedit is the great text editor][8] -#### 8\. A native screenshot tool +#### 8. A native screenshot tool One of the best features of the GNOME 42 release is the built-in screenshot and screen recording tool. You do not install any additional app for this. Your life will be easier with this tool, which takes care of the screenshot and screen recording with its nifty user interface when you press the `Print Screen` button. -In earlier releases, hitting the Print Screen takes the entire desktop screenshot and saves it. Now, you need to hit Enter key after pressing Print Screen from the keyboard.  +In earlier releases, hitting the Print Screen takes the entire desktop screenshot and saves it. Now, you need to hit Enter key after pressing Print Screen from the keyboard. -![GNOME 42 introduces new screenshot tool][10] +![GNOME 42 introduces new screenshot tool][9] -#### 9\. Stunning Wallpapers +#### 9. Stunning Wallpapers A set of awesome wallpapers is about to treat you and give your favourite GNOME 42 desktop a visual uplift. And the wallpapers also have a dark version, which is set automatically when you choose dark over light. -#### 10\. Other Changes +#### 10. Other Changes Some of the misc changes in the GNOME 42 release is the Eye of GNOME (image viewer) received a much-needed performance boost, Web browser GNOME Web now support hardware acceleration and user interface update in Maps. Also, a new Console application is a nice add on to this release which replaces GNOME Terminal. -So, that’s about significant changes. But many changes make GNOME 42 release is one of the biggest releases in its history.  +So, that’s about significant changes. But many changes make GNOME 42 release is one of the biggest releases in its history. ### How to get GNOME 42 -GNOME 42 releases on March 23, 2022, and you get to experience it via [GNOME OS][11] right away. +GNOME 42 [was released on March 23, 2022][10], and you get to experience it via [GNOME OS][11] right away. If you plan to get it via Linux Distribution, you have to wait for a little. [Ubuntu 22.04 LTS][12] will feature GNOME 42 (partial), due April 2022. And [Fedora 36][13], which is expected in April as well. -If you are an Arch Linux user, GNOME 42 will arrive soon in the main extra repo. Keep a watch on [this page][14] or check your Arch system via the usual `pacman -Syu` command.  - -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][15], [Twitter][16], [YouTube][17], and [Facebook][18] and never miss an update! - -##### Also Read +If you are an Arch Linux user, GNOME 42 will arrive soon in the main extra repo. Keep a watch on [this page][14] or check your Arch system via the usual `pacman -Syu` command. -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/03/gnome-42-release/ 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 -[1]: https://www.debugpoint.com/wp-content/uploads/2022/03/GNOME-42-Desktop-1024x563.jpg +[b]: https://github.com/lkxed +[1]: https://www.debugpoint.com/wp-content/uploads/2022/03/GNOME-42-Desktop.jpg [2]: https://www.debugpoint.com/wp-content/uploads/2022/03/GNOME-42-Shell-updates.jpg [3]: https://www.debugpoint.com/wp-content/uploads/2022/03/Revamped-OSD-and-menu-in-GNOME-42.jpg [4]: https://www.debugpoint.com/wp-content/uploads/2022/03/This-option-makes-it-folow-dar-and-light-theme-automatically.jpg -[5]: https://www.debugpoint.com/wp-content/uploads/2022/03/Appearance-page-in-Settings-1024x708.jpg -[6]: https://www.debugpoint.com/2018/08/10-things-to-do-after-installing-linux-mint-19-tara/ -[7]: https://www.debugpoint.com/wp-content/uploads/2022/03/Files-with-new-color-folders-in-GNOME-42.jpg -[8]: https://www.debugpoint.com/2021/12/gnome-text-editor/ -[9]: https://www.debugpoint.com/2021/04/gedit-features/ -[10]: https://www.debugpoint.com/wp-content/uploads/2022/03/GNOME-42-introduces-new-screenshot-tool-1024x699.jpg +[5]: https://www.debugpoint.com/wp-content/uploads/2022/03/Appearance-page-in-Settings.jpg +[6]: https://www.debugpoint.com/wp-content/uploads/2022/03/Files-with-new-color-folders-in-GNOME-42.jpg +[7]: https://www.debugpoint.com/2021/12/gnome-text-editor/ +[8]: https://www.debugpoint.com/2021/04/gedit-features/ +[9]: https://www.debugpoint.com/wp-content/uploads/2022/03/GNOME-42-introduces-new-screenshot-tool.jpg +[10]: https://release.gnome.org/42/ [11]: https://os.gnome.org/ [12]: https://www.debugpoint.com/2022/01/ubuntu-22-04-lts/ [13]: https://www.debugpoint.com/2022/02/fedora-36/ [14]: https://archlinux.org/groups/x86_64/gnome/ -[15]: https://t.me/debugpoint -[16]: https://twitter.com/DebugPoint -[17]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[18]: https://facebook.com/DebugPoint diff --git a/sources/tech/20220421 10 Things to Do After Installing Ubuntu 22.04 -With Bonus Tip.md b/sources/tech/20220421 10 Things to Do After Installing Ubuntu 22.04 [With Bonus Tip].md similarity index 64% rename from sources/tech/20220421 10 Things to Do After Installing Ubuntu 22.04 -With Bonus Tip.md rename to sources/tech/20220421 10 Things to Do After Installing Ubuntu 22.04 [With Bonus Tip].md index 90668716ad..6f8b58849b 100644 --- a/sources/tech/20220421 10 Things to Do After Installing Ubuntu 22.04 -With Bonus Tip.md +++ b/sources/tech/20220421 10 Things to Do After Installing Ubuntu 22.04 [With Bonus Tip].md @@ -1,7 +1,7 @@ [#]: subject: "10 Things to Do After Installing Ubuntu 22.04 [With Bonus Tip]" [#]: via: "https://www.debugpoint.com/2022/04/10-things-to-do-ubuntu-22-04-after-install/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,20 +9,18 @@ 10 Things to Do After Installing Ubuntu 22.04 [With Bonus Tip] ====== -YOU MAY WANT TO TRY A SUMMARY OF 10 THINGS AFTER INSTALLING UBUNTU 22.04 -LTS “JAMMY JELLYFISH” (GNOME EDITION). +You may want to try a summary of 10 things after installing Ubuntu 22.04 LTS “Jammy Jellyfish” (GNOME Edition). + I am sure you are excited to experience the brand new Ubuntu 22.04 LTS and its shiny new features. If you have already installed or upgraded from the prior release, you may want to customise your system before you start using it. Although the customisations are subjective and vary with use cases. However, we give you 10 pointers that you can do after installing Ubuntu 22.04 LTS. I hope it helps. ### 10 Things to Do After Installing Ubuntu 22.04 -#### 1\. Update Your System +#### 1. Update Your System Firstly, you should do some housekeeping after installing Ubuntu 22.04 LTS. Before you begin using the new system and configuring it, ensure that it is up to date with the latest packages from the Ubuntu Jammy repo. So, open a terminal window and run the below commands. Or, open Software Updater from the search. ``` - - sudo apt update && sudo apt upgrade - +sudo apt update && sudo apt upgrade ``` ![Update your Ubuntu 22.04 LTS System][1] @@ -31,19 +29,19 @@ Software application takes some time to load for the first time; hence you must Finally, when everything completes, reboot your system to proceed. -#### 2\. Opt-In/Opt-Out from data collection and history settings +#### 2. Opt-In/Opt-Out from data collection and history settings Secondly, it’s essential to review the privacy settings before using the system. Because we are all concerned about our usage data, location tracking, etc. So, to check them, open Settings from search and go to Privacy. The items you should review are Location Services and File History usage in your system. Make sure to change them as per your need. ![Review the privacy settings][2] -#### 3\. Configure KB shortcuts +#### 3. Configure KB shortcuts To effectively use Ubuntu 22.04 system, keyboard shortcuts are essential. It helps your work faster. So, ideally, keyboard shortcuts are pre-configured, but you may want to change them based on your habits from `Settings > Keyboard > View and Customize Shortcuts`. ![Configure Keyboard shortcuts in Ubuntu 22.04][3] -#### 4\. Prepare for the backup +#### 4. Prepare for the backup If you plan to use the system for a longer duration, it is super important to create a system checkpoint just after installation. Because in the future, if something goes wrong, you can always revert to your system as a fresh install. @@ -51,105 +49,89 @@ Ubuntu 22.04 comes with the built-in backup tool – Backups. You can go ahead a However, we recommend you use the great backup and restore tool TImeshift. It has many additional options and is well documented for heavy usage. To install Timeshift, you can use software or the terminal commands mentioned below. +As of writing this post, this Timeshift PPA is yet to be updated for Jammy Jellyfish. So, I would recommend you wait for a couple of days to install it via PPA. You can also monitor PPA updates [here][4]. You can always use the built-in backup tool as mentioned above. + After installation, launch Timeshift and follow the on-screen instructions to create a system restore point. ``` - - sudo add-apt-repository -y ppa:teejee2008/ppa - sudo apt-get update - sudo apt-get install timeshift - +sudo add-apt-repository -y ppa:teejee2008/ppasudo apt-get updatesudo apt-get install timeshift ``` -#### 5\. Explore the New Features +#### 5. Explore the New Features Once you complete the above set of housekeepings, it’s time for you to explore the new features of Ubuntu 22.04. We covered the unique features of Ubuntu 22.04 and its flavours in detail in dedicated posts. You may want to check them out below. - * [Ubuntu 22.04 LTS – GNOME][4] - * [Ubuntu MATE 22.04 LTS][5] - * [Kubuntu 22.04 LTS][6] - * [Xubuntu 22.04 LTS][7] - * [Ubuntu Budgie 22.04 LTS][8] - * [Lubuntu 22.04 LTS][9] - * [Ubuntu Kylin 22.04 LTS][10] - * [Ubuntu Studio 22.04 LTS][11] - * [Ubuntu 20.04 vs Ubuntu 22.04 – Differences][12] +* [Ubuntu 22.04 LTS – GNOME][5] +* [Ubuntu MATE 22.04 LTS][6] +* [Kubuntu 22.04 LTS][7] +* [Xubuntu 22.04 LTS][8] +* [Ubuntu Budgie 22.04 LTS][9] +* [Lubuntu 22.04 LTS][10] +* [Ubuntu Kylin 22.04 LTS][11] +* [Ubuntu Studio 22.04 LTS][12] +* [Ubuntu 20.04 vs Ubuntu 22.04 – Differences][13] - - -#### 6\. Experience the first-ever Accent Colour in Ubuntu +#### 6. Experience the first-ever Accent Colour in Ubuntu In addition to the above items, you may find the new accent colour interesting in this release. This is one of the new features which was due for a long time. So, in the Appearance settings, you can find the selected colour options. You can choose your favourite colour and see the selection, the folder icon gradient changes with the colour. However, you can not select the custom colour at the moment. I am sure it will eventually come up in future releases. -![How Accent colour change impact looks in Ubuntu 22.04 LTS][13] +![How Accent colour change impact looks in Ubuntu 22.04 LTS][14] -#### 7\. Dark Mode and new controls +#### 7. Dark Mode and new controls Besides that accent colour, this release, alongside GNOME 42, brings new style changes, thanks to GTK4 and libadwaita adoption. With this change, the built-in dark mode can apply across the desktop and application that supports it. Also, the controls such as buttons, notifications, rounded corners, scroll bars, etc. all are more stylish and compact in this release. -[][12] - -SEE ALSO:   Difference Between Ubuntu 22.04 and Ubuntu 20.04 LTS - All of these together make this release a beautiful one. -#### 8\. Install GNOME Extensions +#### 8. Install GNOME Extensions Additionally, you can take advantage of hundreds of excellent GNOME Extensions available. For example, you may want to customise the default Dock, Or, like a super cool blur effect, etc. – you can quickly achieve these using the extensions. We list here some of the exciting extensions you may want to try out after installing this release. - * [Blur My Shell][14] – get an exciting blur effect on the default shell - * [Floating Dock][15] – make your dock float wherever you want - * Dash to Dock: Enables you to control your Dash across the screen with various options. - * Caffeine: Enables you more productively. - * [Time ++][16]: Super handy extension to give you an alarm clock, stopwatch, time tracker, Pomodoro, and todo.txt manager – all together. - * [NetSpeed][17]: Show your internet download and upload speed in the system tray. - - +* [Blur My Shell][15] – get an exciting blur effect on the default shell +* [Floating Dock][16] – make your dock float wherever you want +* Dash to Dock: Enables you to control your Dash across the screen with various options. +* Caffeine: Enables you more productively. +* [Time ++][17]: Super handy extension to give you an alarm clock, stopwatch, time tracker, Pomodoro, and todo.txt manager – all together. +* [NetSpeed][18]: Show your internet download and upload speed in the system tray. Before installing the above extensions, open a terminal prompt and install the chrome-gnome-shell using the below command to enable extensions. ``` - - sudo apt-get install chrome-gnome-shell - +sudo apt-get install chrome-gnome-shell ``` -Then go to [https://extensions.gnome.org][18] and enable the extensions for Firefox. +Then go to [https://extensions.gnome.org][19] and enable the extensions for Firefox. -If you use the Snap version of Firefox, then the extension connectivity won’t work. So, uninstall the Firefox Snap version and use an alternate installation Or use a different browser (Such as Google Chrome, Chromium) that has a .deb version. Or, install the extension using the manual steps [outlined here in this article][19]. +If you use the Snap version of Firefox, then the extension connectivity won’t work. So, uninstall the Firefox Snap version and [use an alternate installation][20] Or use a different browser (Such as Google Chrome, Chromium) that has a .deb version. Or, install the extension using the manual steps [outlined here in this article][21]. -#### 9\. Configure Email Client +#### 9. Configure Email Client Moreover, a native desktop email client is always preferable over browser-based email access. Hence, I would recommend you configure Thunderbird with your email service provider. The setup is more straightforward and wizard-driven. It helps for offline and drafting work for heavy email users. -Alternatively, if you do not like Thunderbird, try to check out options – you can read our list of [top free native Linux desktop email clients list][20] and choose your favourite. +Alternatively, if you do not like Thunderbird, try to check out options – you can read our list of [top free native Linux desktop email clients list][22] and choose your favourite. -#### 10\. Install some additional packages and Software +#### 10. Install some additional packages and Software In addition to the above items, you should install some additional packages and software because Ubuntu doesn’t come with extra apps other than the native GNOME applications. We list here some of the important applications needed for basic desktop usage. You can install them using the Software application. - * GIMP – Advanced photo editor - * VLC – Media play that plays anything without the need for additional codecs - * Google Chrome – Browser for Google users. - * Leafpad – A lightweight text editor (even lightweight from default gedit) - * Synaptic – A far better package manager - - +* GIMP – Advanced photo editor +* VLC – Media play that plays anything without the need for additional codecs +* Google Chrome – Browser for Google users. +* Leafpad – A lightweight text editor (even lightweight from default gedit) +* Synaptic – A far better package manager Moreover, while installing Ubuntu, if you have not selected to install the restricted software to play audio and video media files, you can do it now. Because GNOME default Video player (Totem) can not play the basic mp4, etc. files without restricted software. So, to install them, open the terminal and run the below command to install. ``` - - sudo apt install ubuntu-restricted-extras - +sudo apt install ubuntu-restricted-extras ``` You can now play most video/audio files without any problem in Ubuntu. @@ -158,14 +140,12 @@ You can now play most video/audio files without any problem in Ubuntu. Finally, I recommend you set up Flatpak the first time after installing Ubuntu 22.04 LTS. Because over time, I am sure you would install many Flatpak applications. -To set up Flatpak, [visit this page][21] and follow the instructions. +To set up Flatpak, [visit this page][23] and follow the instructions. Once you complete the setup, I recommend installing the below two Flatpak apps. The Extension application helps you manage the GNOME Extensions installed in your system. Other than that, the Flatseal application helps you manage Flatpak applications’ permissions in a super friendly way. - * [Flatseal][22] – Manage Flatpak permissions - * [Extensions][23] – Manage GNOME extensions - - +* [Flatseal][24] – Manage Flatpak permissions +* [Extensions][25] – Manage GNOME extensions ### Summary @@ -173,47 +153,41 @@ Also, one of the crucial debatable things to do after installing Ubuntu 22.04 is That said, I hope this list gives you and new users of Ubuntu some idea about making a productive Ubuntu 22.04 LTS desktop. -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][24], [Twitter][25], [YouTube][26], and [Facebook][27] and never miss an update! - -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/04/10-things-to-do-ubuntu-22-04-after-install/ 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 +[b]: https://github.com/lkxed [1]: https://www.debugpoint.com/wp-content/uploads/2022/04/Update-your-Ubuntu-22.04-LTS-System.jpg -[2]: https://www.debugpoint.com/wp-content/uploads/2022/04/Review-the-privacy-settings-1024x446.jpg +[2]: https://www.debugpoint.com/wp-content/uploads/2022/04/Review-the-privacy-settings.jpg [3]: https://www.debugpoint.com/wp-content/uploads/2022/04/Configure-Keyboard-shortcuts-in-Ubuntu-22.04.jpg -[4]: https://www.debugpoint.com/2022/01/ubuntu-22-04-lts/ -[5]: https://www.debugpoint.com/2022/04/ubuntu-mate-22-04-lts/ -[6]: https://www.debugpoint.com/2022/04/kubuntu-22-04-lts/ -[7]: https://www.debugpoint.com/2022/04/xubuntu-22-04-lts/ -[8]: https://www.debugpoint.com/2022/04/ubuntu-budgie-22-04-lts/ -[9]: https://www.debugpoint.com/2022/04/lubuntu-22-04-lts/ -[10]: https://www.debugpoint.com/2022/04/ubuntu-kylin-22-04-lts/ -[11]: https://www.debugpoint.com/2022/04/ubuntu-studio-22-04-lts/ -[12]: https://www.debugpoint.com/2022/04/difference-ubuntu-22-04-20-04/ -[13]: https://www.debugpoint.com/wp-content/uploads/2022/04/How-Accent-colour-change-impact-looks-in-Ubuntu-22.04-LTS.jpg -[14]: https://extensions.gnome.org/extension/3193/blur-my-shell/ -[15]: https://extensions.gnome.org/extension/3730/floating-dock/ -[16]: https://extensions.gnome.org/extension/1238/time/ -[17]: https://extensions.gnome.org/extension/104/netspeed/ -[18]: https://extensions.gnome.org/ -[19]: https://www.debugpoint.com/2021/10/manual-installation-gnome-extension/ -[20]: https://www.debugpoint.com/2019/06/best-email-client-linux-windows/ -[21]: https://flatpak.org/setup/ -[22]: https://flathub.org/apps/details/com.github.tchx84.Flatseal -[23]: https://flathub.org/apps/details/org.gnome.Extensions -[24]: https://t.me/debugpoint -[25]: https://twitter.com/DebugPoint -[26]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[27]: https://facebook.com/DebugPoint +[4]: https://launchpad.net/~teejee2008/+archive/ubuntu/timeshift/+packages +[5]: https://www.debugpoint.com/2022/01/ubuntu-22-04-lts/ +[6]: https://www.debugpoint.com/2022/04/ubuntu-mate-22-04-lts/ +[7]: https://www.debugpoint.com/2022/04/kubuntu-22-04-lts/ +[8]: https://www.debugpoint.com/2022/04/xubuntu-22-04-lts/ +[9]: https://www.debugpoint.com/2022/04/ubuntu-budgie-22-04-lts/ +[10]: https://www.debugpoint.com/2022/04/lubuntu-22-04-lts/ +[11]: https://www.debugpoint.com/2022/04/ubuntu-kylin-22-04-lts/ +[12]: https://www.debugpoint.com/2022/04/ubuntu-studio-22-04-lts/ +[13]: https://www.debugpoint.com/2022/04/difference-ubuntu-22-04-20-04/ +[14]: https://www.debugpoint.com/wp-content/uploads/2022/04/How-Accent-colour-change-impact-looks-in-Ubuntu-22.04-LTS.jpg +[15]: https://extensions.gnome.org/extension/3193/blur-my-shell/ +[16]: https://extensions.gnome.org/extension/3730/floating-dock/ +[17]: https://extensions.gnome.org/extension/1238/time/ +[18]: https://extensions.gnome.org/extension/104/netspeed/ +[19]: https://extensions.gnome.org/ +[20]: https://www.debugpoint.com/2021/09/remove-firefox-snap-ubuntu/ +[21]: https://www.debugpoint.com/2021/10/manual-installation-gnome-extension/ +[22]: https://www.debugpoint.com/2019/06/best-email-client-linux-windows/ +[23]: https://flatpak.org/setup/ +[24]: https://flathub.org/apps/details/com.github.tchx84.Flatseal +[25]: https://flathub.org/apps/details/org.gnome.Extensions diff --git a/sources/tech/20220427 5 Best Mastodon Clients for Ubuntu and Other Linux.md b/sources/tech/20220427 5 Best Mastodon Clients for Ubuntu and Other Linux.md index 21c1d245e2..5b91a032d3 100644 --- a/sources/tech/20220427 5 Best Mastodon Clients for Ubuntu and Other Linux.md +++ b/sources/tech/20220427 5 Best Mastodon Clients for Ubuntu and Other Linux.md @@ -1,7 +1,7 @@ [#]: subject: "5 Best Mastodon Clients for Ubuntu and Other Linux" [#]: via: "https://www.debugpoint.com/2022/04/mastodon-clients-linux/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,15 +9,15 @@ 5 Best Mastodon Clients for Ubuntu and Other Linux ====== -ARE YOU PLANNING TO LEAVE TWITTER AND JOIN MASTODON? USE THESE FREE AND -OPEN-SOURCE MASTODON CLIENTS FOR YOUR LINUX DESKTOP. +Are you planning to leave Twitter and join Mastodon? Use these free and open-source Mastodon clients for your Linux desktop. + [Mastodon][1] is a free and open-source microblogging platform similar to Twitter. It is designed as a decentralised platform that can communicate with other Fediverse protocols such as GNU Social and Pleroma. With the recent news stories about Twitter, many users are trying Mastodon and migrating to the platform. With that in mind, we give you a list of free Mastodon clients for Linux desktops as well as Windows and macOS in this post. ### Top 5 Mastodon Clients for Ubuntu and Other Linux Distributions -#### 1\. Tootle +#### 1. Tootle Perhaps the best on this list is the GNOME App Tootle. Tootle is a super-fast Mastodon client for Linux desktops written in GTK. It comes with a clean and native interface that you can use while using Mastodon. With this app, you can easily browse posts, view feeds, have a customised home page and follow accounts. In addition to that, dedicated tabs gives you options to quickly jump between your home page, notifications, mentions and federated feed. @@ -29,29 +29,27 @@ The easiest way to install Tootle is using Flatpak in any Linux distribution. Se [Install Tootle][5] - * [Source Code][6] - * [Home page][7] +**More information about Tootle** +* [Source Code][6] +* [Home page][7] - -#### 2\. Tokodon +#### 2. Tokodon The Tokodon is another Mastodon client which brings a little different user interface to access this social platform. Its part of KDE Applications and built primarily using C++. It gives you an excellent clean user interface with a basic home page view. On top of that, you can browse local accounts to your mastodon server and the global ones. The bottom navigation gives easy access to all the Mastodon sections. ![Tokodon Mastodon Client for Linux][8] -The easiest way to install Tokodon is using Flatpak in any Linux distribution. Setup your system using this [guide for Flatpa][4]k (if not done yet) and hit the below link to install. +The easiest way to install Tokodon is using Flatpak in any Linux distribution. Setup your system using this [guide for Flatpa][9]k (if not done yet) and hit the below link to install. -[Install Tokodon via Flathub][9] +[Install Tokodon via Flathub][10] -**Tokodon** +**More information about** **Tokodon** - * [Source code][10] - * [Home page][11] +* [Source code][11] +* [Home page][12] - - -#### 3\. Sengi +#### 3. Sengi Among this list, Sengi is most likely the versatile Mastodon client for Linux desktops. It comes with usual features such as notification, account view and follows features. On top of that, it brings Tweetdeck styled live interface with the timeline. @@ -59,21 +57,17 @@ Sengi is perfect for heavy Mastodon users who want to manage multiple accounts a Furthermore, you should note that it is designed with web technology and packaged as desktop applications. Finally, it is available for Linux, macOS and Windows as well. -![Sengi Mastodon Client | Image Credit: Sengi][12] +![Sengi Mastodon Client | Image Credit: Sengi][13] Finally, installing Sengi is very easy because the developer provides all types of executables, including native deb and AppImage. You can grab the .deb or .appimage file from the below link in addition to the windows and Mac executables. -[Download Sengi][13] +[Download Sengi][14] - * [Source code][14] +**More information about Sengi** +* [Source code][15] - -[][15] - -SEE ALSO:   10 Necessary Apps to Improve Your GNOME Desktop Experience [Part 4] - -#### 4\. Whalebird +#### 4. Whalebird Whalebird is another free and open-source Mastodon client built using Electron. Moreover, this web-based application is feature-rich and is the most stable Mastodon client. Using Whalebird, you can manage multiple accounts and monitor multiple timelines. In addition to that, you can also create a custom timeline to follow your favourite hashtags with a simple chronological workspace view. @@ -83,11 +77,11 @@ Finally, installing Whalebird is easy because it comes with an AppImage executab [Download Whalebird][17] - * [Source code][18] +**More information about Whalebird** +* [Source code][18] - -#### 5\. TheDesk +#### 5. TheDesk The fifth Mastodon client for Linux and other OSes we would like to feature is TheDesk. It is perhaps the most feature-rich client with a vast list of features. Its workflow is similar to Hootsuite and Tweetdeck for heavy social media monitoring and usage. You can customise it to follow a particular user, hashtags with options to create multiple timeline views. @@ -95,12 +89,10 @@ But it might not be a stable client and may contain bugs. But you can still try Installing is made easy by its developer with app image, deb, snap and exe files available on GitHub for its releases. You can grab them here. -Download TheDesk - - * [Source code][19] - * [Home page][20] - +**More information about TheDesk** +* [Source code][19] +* [Home page][20] ### Other Options to access Mastodon @@ -108,38 +100,33 @@ Download TheDesk If you are reluctant to install another app, you can use the web version of your choice or favourite pod. You can register for a new account using the below link and connect via the web. - +[https://joinmastodon.org/][21] #### Tusky -Finally, if you are an Android mobile phone user, you can try Tusky. It is a fine and superfast Mastodon client available for Android with many features. You can [download it from Google Play Store here][21]. You can also [get the F-Droid version][22] of this app for Linux Phones. +Finally, if you are an Android mobile phone user, you can try Tusky. It is a fine and superfast Mastodon client available for Android with many features. You can [download it from Google Play Store here][22]. You can also [get the F-Droid version][23] of this app for Linux Phones. ### Closing Notes Wrapping up the list of Mastodon clients for Linux, I hope you get to choose your favourite for your Linux distribution or mobile from the above list. Also, you can always use the Mastodon web for easy access. -**Finally, don’t forget to follow us on our official Mastodon page using the link below.** +Finally, don’t forget to follow us on our official Mastodon page using the link below. - * - - -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][23], [Twitter][24], [YouTube][25], and [Facebook][26] and never miss an update! +* [][24] -------------------------------------------------------------------------------- via: https://www.debugpoint.com/2022/04/mastodon-clients-linux/ 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 +[b]: https://github.com/lkxed [1]: https://joinmastodon.org/ [2]: https://www.debugpoint.com/2022/03/best-gnome-apps-part-5/ [3]: https://www.debugpoint.com/wp-content/uploads/2022/03/Tootle.jpg @@ -148,21 +135,19 @@ via: https://www.debugpoint.com/2022/04/mastodon-clients-linux/ [6]: https://github.com/bleakgrey/tootle [7]: https://apps.gnome.org/app/com.github.bleakgrey.tootle/ [8]: https://www.debugpoint.com/wp-content/uploads/2022/04/Tokodon-Mastodon-Client-for-Linux.jpg -[9]: https://dl.flathub.org/repo/appstream/org.kde.tokodon.flatpakref -[10]: https://invent.kde.org/network/tokodon -[11]: https://apps.kde.org/tokodon/ -[12]: https://www.debugpoint.com/wp-content/uploads/2022/04/Sengi-Mastodon-Client.jpg -[13]: https://github.com/NicolasConstant/sengi/releases -[14]: https://nicolasconstant.github.io/sengi/ -[15]: https://www.debugpoint.com/2022/02/best-gnome-apps-part-4/ -[16]: https://www.debugpoint.com/wp-content/uploads/2022/04/Whalebird-Mastodon-Client-1024x642.jpg +[9]: https://flatpak.org/setup/ +[10]: https://dl.flathub.org/repo/appstream/org.kde.tokodon.flatpakref +[11]: https://invent.kde.org/network/tokodon +[12]: https://apps.kde.org/tokodon/ +[13]: https://www.debugpoint.com/wp-content/uploads/2022/04/Sengi-Mastodon-Client.jpg +[14]: https://github.com/NicolasConstant/sengi/releases +[15]: https://nicolasconstant.github.io/sengi/ +[16]: https://www.debugpoint.com/wp-content/uploads/2022/04/Whalebird-Mastodon-Client.jpg [17]: https://github.com/h3poteto/whalebird-desktop/releases [18]: https://github.com/h3poteto/whalebird-desktop [19]: https://github.com/cutls/TheDesk [20]: https://thedesk.top/en/ -[21]: https://play.google.com/store/apps/details?id=com.keylesspalace.tusky&hl=en_IN&gl=US -[22]: https://tusky.app/ -[23]: https://t.me/debugpoint -[24]: https://twitter.com/DebugPoint -[25]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[26]: https://facebook.com/DebugPoint +[21]: https://joinmastodon.org/ +[22]: https://play.google.com/store/apps/details?id=com.keylesspalace.tusky&hl=en_IN&gl=US +[23]: https://tusky.app/ +[24]: https://floss.social/@debugpoint diff --git a/sources/tech/20220216 dahliaOS - A Unique Linux Distribution Based on Google Fuchsia -First Look.md b/sources/tech/20220502 dahliaOS – A Unique Linux Distribution Based on Google Fuchsia [First Look].md similarity index 74% rename from sources/tech/20220216 dahliaOS - A Unique Linux Distribution Based on Google Fuchsia -First Look.md rename to sources/tech/20220502 dahliaOS – A Unique Linux Distribution Based on Google Fuchsia [First Look].md index 2a8c059fe6..17b1bc5584 100644 --- a/sources/tech/20220216 dahliaOS - A Unique Linux Distribution Based on Google Fuchsia -First Look.md +++ b/sources/tech/20220502 dahliaOS – A Unique Linux Distribution Based on Google Fuchsia [First Look].md @@ -1,7 +1,7 @@ [#]: subject: "dahliaOS – A Unique Linux Distribution Based on Google Fuchsia [First Look]" -[#]: via: "https://www.debugpoint.com/2022/05/dahlia-os-alpha/" +[#]: via: "https://www.debugpoint.com/2022/05/dahlia-os-alpha" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,8 +9,8 @@ dahliaOS – A Unique Linux Distribution Based on Google Fuchsia [First Look] ====== -OUR FIRST LOOK AT THE DAHLIAOS ALPHA VERSION, BASED ON GOOGLE’S FUCHSIA -OPERATING SYSTEM. +Our first look at the dahliaOS Alpha version, based on Google’s Fuchsia operating system. + The [dahliaOS][1] is a unique distribution and a “fork” of the Google [Fuchsia][2] operating system that runs on mainline Linux Kernel and [Zircon Kernel][3]. The Zircon kernel is a newly designed kernel developed by Google for its own set of projects and devices. The parent OS Fuchsia is designed to work on any hardware, including car dashboards to PCs. That said, the dahliaOS is a new promising operating system (or should I say a new Linux Distribution?) which brings a new era of desktop computing experience to traditional Linux distributions. @@ -31,7 +31,7 @@ In addition to those, the Pangolin Shell interacts with X.Org and Flutter. While However, the X.Org display server communicates with userspace and the userspace talks to Linux Kernel. The overall architecture is explained below image (credit: dahliaOS team). -![dahlisOS Architecture][4] +![dahlisOS Architecture][6] #### The Pangolin Desktop @@ -41,7 +41,7 @@ The design is pretty standard with a bottom main panel with an application menu The application menu launches full screen, and it’s unique. At the top, you get a global search bar which searches your entire desktop and web. In the middle, an icon-based application grid gives you access to all the installed packages in your system. One of the unique aspects of this menu is an additional menu bar that shows the application categories in this fullscreen view. -![Full-screen application view][4] +![Full-screen application view][7] Finally, a small section shows shortcuts to the power menu, system settings, and user profile at the bottom. @@ -49,7 +49,7 @@ Not only that, the bottom panel does not overlay with the fullscreen application But that’s not all. My favourite is the system tray pop-up menu which summarizes the system state with toggle switches to turn on or off several settings. See for yourself in the below image. -![System Tray][4] +![System Tray][8] It’s a fine work of user interface design that brings all these options together without the feeling of clumsiness. @@ -59,7 +59,7 @@ Moreover, the different search options and a nice workspace view give this deskt Firstly, I want to discuss how well the Settings window is designed. Settings application gives you access to all tweaks for dahliaOS. This responsive application (adapts to the screen size), offers an array of options on the left panel with its details on the right. -![Settings Window][4] +![Settings Window][9] Network, Customizations, Connected devices, and notifications are some of the critical settings that you can find. However, being an alpha copy, some are still under development. @@ -67,7 +67,7 @@ In addition, dahliaOS comes with built-in dark and light mode with an option to Finally, a file manager, photo viewer, terminal and calculator – all developed in Flutter give a different feel if you are an avid Linux user. -![dahliaOS Running Apps][4] +![dahliaOS Running Apps][10] Installing software is a little different as dahliaOS manages all of them via Web App. @@ -79,7 +79,7 @@ I am not sure whether dahliaOS would allow the installation of native Linux pack Overall, the performance is speedy, and the resource consumption metric is good. In a virtual machine environment, dahliaOS consumes about 330MB of memory. But CPU is surprisingly little higher in my opinion, which hovers around 10 % to 13% range. The Pangolin desktop consumes most of the resources, followed by the X.Org. -![dahliaOS ALPHA System Performance][4] +![dahliaOS ALPHA System Performance][11] Finally, you might feel some strange desktop behaviour related to in-focus and out of focus situations in applications – perhaps due to FLutter. Sometimes, the focus is not registered even if you select a window via mouse. It might well be a bug. @@ -87,69 +87,41 @@ Finally, you might feel some strange desktop behaviour related to in-focus and o Here’s a quick walkthrough of dahliaOS, which I recorded for our readers to give you some idea before you try. +![dahliaOS A Unique Linux Distribution Based on Google Fuchsia First Look][12] + ### Closing Notes To wrap up, I think it is one of the promising Linux distributions in the making, which takes a different path than traditional forks. We will keep a close watch on this project and give you updates here. -If you want to learn more, contribute, visit the official website for more [details][6] ([source][7]). Finally, if you are planning to install or try, visit this [page][8]. - -* * * - -We bring the latest tech, software news and stuff that matters. Stay in touch via [Telegram][9], [Twitter][10], [YouTube][11], and [Facebook][12] and never miss an update! - -#### Share this: - - * [Twitter][13] - - * [Facebook][14] - - * [Print][15] - - * [LinkedIn][16] - - * [Reddit][17] - - * [Telegram][18] - - * [WhatsApp][19] - - * [Email][20] - - * - +If you want to learn more, contribute, visit the official website for more [details][13] ([source][14]). Finally, if you are planning to install or try, visit this [page][15]. -------------------------------------------------------------------------------- -via: https://www.debugpoint.com/2022/05/dahlia-os-alpha/ +via: https://www.debugpoint.com/2022/05/dahlia-os-alpha 作者:[Arindam][a] -选题:[lujun9972][b] +选题:[lkxed][b] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lujun9972 +[b]: https://github.com/lkxed [1]: https://dahliaos.io/ [2]: https://fuchsia.dev/ [3]: https://fuchsia.dev/fuchsia-src/concepts/kernel -[4]: data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 +[4]: https://www.debugpoint.com/wp-content/uploads/2022/05/dahliaOS-Alpha-Desktop.jpg [5]: https://www.debugpoint.com/2022/03/linux-kernel-5-17/ -[6]: https://docs.dahliaos.io/ -[7]: https://github.com/dahliaOS/ -[8]: https://docs.dahliaos.io/install/efi -[9]: https://t.me/debugpoint -[10]: https://twitter.com/DebugPoint -[11]: https://www.youtube.com/c/debugpoint?sub_confirmation=1 -[12]: https://facebook.com/DebugPoint -[13]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=twitter (Click to share on Twitter) -[14]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=facebook (Click to share on Facebook) -[15]: tmp.6E0Ad93KWV#print (Click to print) -[16]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=linkedin (Click to share on LinkedIn) -[17]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=reddit (Click to share on Reddit) -[18]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=telegram (Click to share on Telegram) -[19]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=jetpack-whatsapp (Click to share on WhatsApp) -[20]: https://www.debugpoint.com/2022/05/dahlia-os-alpha/?share=email (Click to email this to a friend) +[6]: https://www.debugpoint.com/wp-content/uploads/2022/05/dahlisOS-Architecture.png +[7]: https://www.debugpoint.com/wp-content/uploads/2022/05/Full-screen-application-view.jpg +[8]: https://www.debugpoint.com/wp-content/uploads/2022/05/System-Tray.jpg +[9]: https://www.debugpoint.com/wp-content/uploads/2022/05/Settings-Window.jpg +[10]: https://www.debugpoint.com/wp-content/uploads/2022/05/dahliaOS-Running-Apps.jpg +[11]: https://www.debugpoint.com/wp-content/uploads/2022/05/dahliaOS-ALPHA-System-Performance.jpg +[12]: https://youtu.be/Cy8iDOkMp9s +[13]: https://docs.dahliaos.io/ +[14]: https://github.com/dahliaOS/ +[15]: https://docs.dahliaos.io/install/efi diff --git a/sources/tech/20220510 How to Upgrade to Fedora 36 from Fedora 35 Workstation (GUI and CLI Method).md b/sources/tech/20220510 How to Upgrade to Fedora 36 from Fedora 35 Workstation (GUI and CLI Method).md index 64da1677b9..e4f1301cac 100644 --- a/sources/tech/20220510 How to Upgrade to Fedora 36 from Fedora 35 Workstation (GUI and CLI Method).md +++ b/sources/tech/20220510 How to Upgrade to Fedora 36 from Fedora 35 Workstation (GUI and CLI Method).md @@ -1,7 +1,7 @@ [#]: subject: "How to Upgrade to Fedora 36 from Fedora 35 Workstation (GUI and CLI Method)" [#]: via: "https://www.debugpoint.com/2022/05/upgrade-fedora-36-from-fedora-35/" [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lujun9972" +[#]: collector: "lkxed" [#]: translator: " " [#]: reviewer: " " [#]: publisher: " " @@ -9,8 +9,7 @@ How to Upgrade to Fedora 36 from Fedora 35 Workstation (GUI and CLI Method) ====== -COMPLETE STEPS TO UPGRADE TO FEDORA 36 FROM FEDORA 35 WORKSTATION -EDITION WITH GUI AND CLI METHOD. +Complete steps to upgrade to fedora 36 from fedora 35 workstation edition with gui and cli method. Fedora 36 brings several important features such as the beautiful GNOME 42, Linux Kernel 5.17, default font changes and many stunning features. Moreover, Fedora 36 also brings Wayland display server as the default NVIDIA proprietary driver. Plus several other significant changes that Fedora 36 brings, which you can read here in our [top 10 feature coverage][1].