Linux Tutorial
Is anyone aware of a tutorial where I can view the content and they also have a simulated Linux environment? I can read and watch the material all day long, but without being able to practice at the same time I feel my time might be wasted. I have on desktop and one very old tablet. My laptop is deceased. Thanks for any input.
https://redd.it/e10aci
@r_linux
Is anyone aware of a tutorial where I can view the content and they also have a simulated Linux environment? I can read and watch the material all day long, but without being able to practice at the same time I feel my time might be wasted. I have on desktop and one very old tablet. My laptop is deceased. Thanks for any input.
https://redd.it/e10aci
@r_linux
reddit
Linux Tutorial
Is anyone aware of a tutorial where I can view the content and they also have a simulated Linux environment? I can read and watch the material...
IBM100 - Linux
https://www.ibm.com/ibm/history/ibm100/us/en/icons/linux/
https://redd.it/e120l4
@r_linux
https://www.ibm.com/ibm/history/ibm100/us/en/icons/linux/
https://redd.it/e120l4
@r_linux
Ibm
IBM100 - Linux
IBM championed open-source architecture when it embraced the Linux operating system in 2000. Today, Linux is one of the most popular, flexible and cost effective operating systems in use, powering technologies from cell phones to supercomputers.
A one-liner version number incrementor
https://gir.st/blog/inc-version.htm
https://redd.it/e127s4
@r_linux
https://gir.st/blog/inc-version.htm
https://redd.it/e127s4
@r_linux
Linux is faster
You don't realize how slow Windows is until you switch to linux
https://redd.it/e14223
@r_linux
You don't realize how slow Windows is until you switch to linux
https://redd.it/e14223
@r_linux
reddit
Linux is faster
You don't realize how slow Windows is until you switch to linux
What are your favorite software packages that give functionality to the OS?
Theres no denying that Linux is in some ways behind other Operating systems, but we're all here for our own reasons.
What software packages do you use to give yourself more functionality? I'm not talking so much about GIMP as I am finding a decent google drive program (that actually keeps the directory in sync)
Windows has Cortana, and not that I want a voice assistant on my computer, I can't even sync my desktop calendar with my phone (If you know how let me know!)
There are a lot of convience-based programs out there, what are you using?
https://redd.it/e133m8
@r_linux
Theres no denying that Linux is in some ways behind other Operating systems, but we're all here for our own reasons.
What software packages do you use to give yourself more functionality? I'm not talking so much about GIMP as I am finding a decent google drive program (that actually keeps the directory in sync)
Windows has Cortana, and not that I want a voice assistant on my computer, I can't even sync my desktop calendar with my phone (If you know how let me know!)
There are a lot of convience-based programs out there, what are you using?
https://redd.it/e133m8
@r_linux
reddit
What are your favorite software packages that give functionality...
Theres no denying that Linux is in some ways behind other Operating systems, but we're all here for our own reasons. What software packages do...
Interesting bit of news
https://www.androidpolice.com/2019/11/19/google-wants-android-to-use-regular-linux-kernel-potentially-improving-updates-and-security/
https://redd.it/dzi3o0
@r_linux
https://www.androidpolice.com/2019/11/19/google-wants-android-to-use-regular-linux-kernel-potentially-improving-updates-and-security/
https://redd.it/dzi3o0
@r_linux
Android Police
Google wants Android to use regular Linux kernel, potentially improving updates and security
Android is built on top of the Linux kernel, but it has always used a heavily-modified version with changes from OEMs, chip manufacturers like Qualcomm and MediaTek, and Google. There have been efforts over the years to close the gap between the two kernels…
Ubuntu 19.10 + RX 5700 XT Installation Instructions
I haven't found a good set of instructions for getting Ubuntu 19.10 + RX 5700 XT working so I decided to put some together. Hopefully this will help others with getting their shiny new RX 5770 XT working in Linux!
USE AT YOUR OWN RISK.
# My Hardware
* AMD Ryzen 2700X
* Corsair 16GB DDR4-3200
* ASUS ROG Crosshair VII Hero
* ASUS ROG Strix Radeon RX 5700 XT OC
* Samsung NVMe 970 EVO 500GB
# Software Involved
* Ubuntu 19.10
* Linux Firmware
* Linux Kernel v5.3.11
* XWayland Window Manager
# Install Ubuntu 19.10
At this time, Ubuntu 19.10 does not come with the RX 5700 XT firmware. Because of this, the installer screen can freeze; preventing you from even installing Ubuntu! To get around this, install using graphic safe mode (nomodeset).
## - ISO to USB
1. Download Ubuntu 19.10
1. Website: [https://ubuntu.com/download/desktop](https://ubuntu.com/download/desktop)
2. Write ISO to USB stick
1. Use an app like *USB Image Writer* (Linux Mint)
2. Or in Linux terminal
1. Run: *sudo dd bs=4M if=<download\_dir>/<ubuntu\_iso> of=/dev/<USB\_device>*
2. Replace <download\_dir>, <ubuntu\_iso>, and <USB\_device> with the correct values
3. To get <USB\_Device> run: *sudo fdisk -l*
## - Ubuntu GRUB Menu
1. Boot from USB stick
2. Stop at GRUB menu (may need to hit ESC to get GRUB menu to appear)
3. GRUB Text Menu: Change boot command
1. Down-Arrow and select *Install Ubuntu* but don’t press ENTER
2. Press e
3. On the line that starts with *linux*, add *nomodeset* after *splash*
4. Press CTRL-X or F10 to boot into Ubuntu Installer
4. GRUB Graphical Menu: Change boot command
1. Select *Install Ubuntu (safe graphics)*
2. Press ENTER to boot into Ubuntu Installer
## - Ubuntu Installer
1. Install as you normally would
2. I choose *Minimal installation*, *Download updates while installing Ubuntu*, and *Install third-party software for graphics and Wi-Fi hardware and additional media formats*
# First Boot into Ubuntu 19.10
Now Ubuntu is installed, but the RX 5700 XT firmware is not... yet. So, we need to do the same boot using safe graphics we did during the installation. Once Ubuntu is booted, run updates, install the RX 5700 XT firmware, then upgrade the Linux kernel to v5.3.11 (Ubuntu 19.10 comes with 5.3.0). I found around a 5% - 10% increase in performance by upgrading the kernel (remember the AMD drivers are in the kernel).
## - Ubuntu GRUB Menu
1. Stop at GRUB menu (may need to hit ESC to get GRUB menu to appear)
2. GRUB Text Menu: Change boot command
1. Select *Ubuntu* but don’t press ENTER
2. Press e
3. On the line that starts with *linux*, add *nomodeset* after *splash*
4. Press CTRL-X or F10 to boot into Ubuntu
## - Update Ubuntu
1. Open a terminal
2. Run: *sudo apt update*
3. Run: *sudo apt upgrade*
## - Install git
1. Open a terminal
2. Run: *sudo apt install git*
## - Install linux-firmware
1. Open a terminal
2. Change to a directory where the linux-firmware repository will live (home directory is fine)
3. Run: *git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git*
4. Run: *cd linux-firmware*
5. Run: *sudo cp -va amdgpu/ /lib/firmware/*
6. Run: *update-initramfs -u*
7. \[Optional\] Reboot (we’ll reboot in *Install Linux Kernel*)
## - Install Linux Kernel v5.3.11
1. Open a web browser and go to: [https://kernel.ubuntu.com/\~kernel-ppa/mainline/v5.3.11/](https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.3.11/)
1. You can go to [https://kernel.ubuntu.com/\~kernel-ppa/mainline](https://kernel.ubuntu.com/~kernel-ppa/mainline) to select other kernel versions
2. Assuming a 64 bit Intel/AMD computer, download the files found under *Build for amd64*
1. Make sure *succeeded* is after *Build for amd64*
2. Download: *linux-headers-xxx-all.deb* (where xxx is versions and timestamps)
3. Download: *linux-image-unsigned-xxx-generic\_xxx\_amd64.deb* (where xxx is versions and timestamps)
4. Download: *linux-modules-xxx-generic\_xxx\_amd64.deb* (where xxx is versions
I haven't found a good set of instructions for getting Ubuntu 19.10 + RX 5700 XT working so I decided to put some together. Hopefully this will help others with getting their shiny new RX 5770 XT working in Linux!
USE AT YOUR OWN RISK.
# My Hardware
* AMD Ryzen 2700X
* Corsair 16GB DDR4-3200
* ASUS ROG Crosshair VII Hero
* ASUS ROG Strix Radeon RX 5700 XT OC
* Samsung NVMe 970 EVO 500GB
# Software Involved
* Ubuntu 19.10
* Linux Firmware
* Linux Kernel v5.3.11
* XWayland Window Manager
# Install Ubuntu 19.10
At this time, Ubuntu 19.10 does not come with the RX 5700 XT firmware. Because of this, the installer screen can freeze; preventing you from even installing Ubuntu! To get around this, install using graphic safe mode (nomodeset).
## - ISO to USB
1. Download Ubuntu 19.10
1. Website: [https://ubuntu.com/download/desktop](https://ubuntu.com/download/desktop)
2. Write ISO to USB stick
1. Use an app like *USB Image Writer* (Linux Mint)
2. Or in Linux terminal
1. Run: *sudo dd bs=4M if=<download\_dir>/<ubuntu\_iso> of=/dev/<USB\_device>*
2. Replace <download\_dir>, <ubuntu\_iso>, and <USB\_device> with the correct values
3. To get <USB\_Device> run: *sudo fdisk -l*
## - Ubuntu GRUB Menu
1. Boot from USB stick
2. Stop at GRUB menu (may need to hit ESC to get GRUB menu to appear)
3. GRUB Text Menu: Change boot command
1. Down-Arrow and select *Install Ubuntu* but don’t press ENTER
2. Press e
3. On the line that starts with *linux*, add *nomodeset* after *splash*
4. Press CTRL-X or F10 to boot into Ubuntu Installer
4. GRUB Graphical Menu: Change boot command
1. Select *Install Ubuntu (safe graphics)*
2. Press ENTER to boot into Ubuntu Installer
## - Ubuntu Installer
1. Install as you normally would
2. I choose *Minimal installation*, *Download updates while installing Ubuntu*, and *Install third-party software for graphics and Wi-Fi hardware and additional media formats*
# First Boot into Ubuntu 19.10
Now Ubuntu is installed, but the RX 5700 XT firmware is not... yet. So, we need to do the same boot using safe graphics we did during the installation. Once Ubuntu is booted, run updates, install the RX 5700 XT firmware, then upgrade the Linux kernel to v5.3.11 (Ubuntu 19.10 comes with 5.3.0). I found around a 5% - 10% increase in performance by upgrading the kernel (remember the AMD drivers are in the kernel).
## - Ubuntu GRUB Menu
1. Stop at GRUB menu (may need to hit ESC to get GRUB menu to appear)
2. GRUB Text Menu: Change boot command
1. Select *Ubuntu* but don’t press ENTER
2. Press e
3. On the line that starts with *linux*, add *nomodeset* after *splash*
4. Press CTRL-X or F10 to boot into Ubuntu
## - Update Ubuntu
1. Open a terminal
2. Run: *sudo apt update*
3. Run: *sudo apt upgrade*
## - Install git
1. Open a terminal
2. Run: *sudo apt install git*
## - Install linux-firmware
1. Open a terminal
2. Change to a directory where the linux-firmware repository will live (home directory is fine)
3. Run: *git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git*
4. Run: *cd linux-firmware*
5. Run: *sudo cp -va amdgpu/ /lib/firmware/*
6. Run: *update-initramfs -u*
7. \[Optional\] Reboot (we’ll reboot in *Install Linux Kernel*)
## - Install Linux Kernel v5.3.11
1. Open a web browser and go to: [https://kernel.ubuntu.com/\~kernel-ppa/mainline/v5.3.11/](https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.3.11/)
1. You can go to [https://kernel.ubuntu.com/\~kernel-ppa/mainline](https://kernel.ubuntu.com/~kernel-ppa/mainline) to select other kernel versions
2. Assuming a 64 bit Intel/AMD computer, download the files found under *Build for amd64*
1. Make sure *succeeded* is after *Build for amd64*
2. Download: *linux-headers-xxx-all.deb* (where xxx is versions and timestamps)
3. Download: *linux-image-unsigned-xxx-generic\_xxx\_amd64.deb* (where xxx is versions and timestamps)
4. Download: *linux-modules-xxx-generic\_xxx\_amd64.deb* (where xxx is versions
Ubuntu
Download Ubuntu Desktop | Ubuntu
Ubuntu is an open source software operating system that runs from the desktop, to the cloud, to all your internet connected things.
and timestamps)
3. Open a terminal
4. Change directory (cd) to where you downloaded the files
5. Make a directory: *mkdir kernel*
6. Copy deb files to *kernel* directory: cp \**.deb kernel*
7. Change to *kernel* directory: *cd kernel*
8. Install new kernel: sudo dpkg -i \**.deb*
9. Reboot
# Final Boot into Ubuntu 19.10
Finally, the RX 5700 XT firmware and Linux kernel are installed and upgraded. I found my cursor and any windows on the desktop to stutter a lot when moved around. This seems to have something to do with X11. So, switch to Wayland. All stuttering goes away!
## - Set XWayland Window Manager
1. At the login screen, select your user. This is the point where you enter the password.
2. Next to the *Sign In* button is a gear. Click on the gear and select *Ubuntu on Wayland*.
3. Enter your password and sign in.
4. The XWayland window manager selection should be the default for this user from now on.
# Finished!
Congrats! Hopefully you now have a working Ubuntu 19.10 environment with your RX 5700 XT.
https://redd.it/dyoalh
@r_linux
3. Open a terminal
4. Change directory (cd) to where you downloaded the files
5. Make a directory: *mkdir kernel*
6. Copy deb files to *kernel* directory: cp \**.deb kernel*
7. Change to *kernel* directory: *cd kernel*
8. Install new kernel: sudo dpkg -i \**.deb*
9. Reboot
# Final Boot into Ubuntu 19.10
Finally, the RX 5700 XT firmware and Linux kernel are installed and upgraded. I found my cursor and any windows on the desktop to stutter a lot when moved around. This seems to have something to do with X11. So, switch to Wayland. All stuttering goes away!
## - Set XWayland Window Manager
1. At the login screen, select your user. This is the point where you enter the password.
2. Next to the *Sign In* button is a gear. Click on the gear and select *Ubuntu on Wayland*.
3. Enter your password and sign in.
4. The XWayland window manager selection should be the default for this user from now on.
# Finished!
Congrats! Hopefully you now have a working Ubuntu 19.10 environment with your RX 5700 XT.
https://redd.it/dyoalh
@r_linux
reddit
Ubuntu 19.10 + RX 5700 XT Installation Instructions
I haven't found a good set of instructions for getting Ubuntu 19.10 + RX 5700 XT working so I decided to put some together. Hopefully this will...
"Rocks is an open-source Linux cluster distribution that enables end users to easily build computational clusters, grid endpoints and visualization tiled-display walls."
http://www.rocksclusters.org/
https://redd.it/e177x1
@r_linux
http://www.rocksclusters.org/
https://redd.it/e177x1
@r_linux
Linux Experiences/Rants or Education/Certifications thread - November 25, 2019
Welcome to r/linux rants and experiences! This megathread is also to hear opinions from anyone just starting out with Linux or those that have used Linux (GNU or otherwise) for a long time.
Let us know what's annoying you, whats making you happy, or something that you want to get out to r/linux but didn't make the cut into a full post of it's own.
For those looking for certifications please use this megathread to ask about how to get certified whether it's for the business world or for your own satisfaction. Be sure to check out r/linuxadmin for more discussion in the SysAdmin world!
_Please keep questions in r/linuxquestions, r/linux4noobs, or the Wednesday automod thread._
https://redd.it/e1ajpi
@r_linux
Welcome to r/linux rants and experiences! This megathread is also to hear opinions from anyone just starting out with Linux or those that have used Linux (GNU or otherwise) for a long time.
Let us know what's annoying you, whats making you happy, or something that you want to get out to r/linux but didn't make the cut into a full post of it's own.
For those looking for certifications please use this megathread to ask about how to get certified whether it's for the business world or for your own satisfaction. Be sure to check out r/linuxadmin for more discussion in the SysAdmin world!
_Please keep questions in r/linuxquestions, r/linux4noobs, or the Wednesday automod thread._
https://redd.it/e1ajpi
@r_linux
reddit
Linux Experiences/Rants or Education/Certifications thread -...
Welcome to r/linux rants and experiences! This megathread is also to hear opinions from anyone just starting out with Linux or those that have...
pioneer space sim a nifty little Linux free open source program (also on PC and mac)
https://pioneerspacesim.net/
https://redd.it/e1aovv
@r_linux
https://pioneerspacesim.net/
https://redd.it/e1aovv
@r_linux
reddit
pioneer space sim a nifty little Linux free open source program...
Posted in r/linux by u/ollobrains • 9 points and 5 comments
The CDU, Germany's ruling party, has passed a resolution to uphold the FSFE's "Public Money? Public Code!" initiative
https://fsfe.org/news/2019/news-20191125-01.en.html
https://redd.it/e1fqmv
@r_linux
https://fsfe.org/news/2019/news-20191125-01.en.html
https://redd.it/e1fqmv
@r_linux
FSFE - Free Software Foundation Europe
FSFE welcomes CDU decision to make Free Software mandatory - FSFE
The Free Software Foundation Europe welcomes the conservantive CDU's party convention resolution on the use of Free Software. At its 32nd party conference ...
Kdenlive 19.12 beta is out
​
https://preview.redd.it/i1ajbyy7uv041.jpg?width=1280&format=pjpg&auto=webp&s=8903a59be0149d1c128da1b5c43f68a34fd3835d
kdenlive 19.12 beta is out with many bug fixes and improvements. The highlights include:
​
* New audio mixer
* Bin monitor redesign
* Performance and usability improvements
* Many Windows fixes
* Master effects
* Re-implement scrolling trough compositions.
Check it out and report any issues:
[https://files.kde.org/kdenlive/unstable/kdenlive-19.12.0-beta1-x86\_64.appimage](https://files.kde.org/kdenlive/unstable/kdenlive-19.12.0-beta1-x86_64.appimage)
https://redd.it/e1l0yr
@r_linux
​
https://preview.redd.it/i1ajbyy7uv041.jpg?width=1280&format=pjpg&auto=webp&s=8903a59be0149d1c128da1b5c43f68a34fd3835d
kdenlive 19.12 beta is out with many bug fixes and improvements. The highlights include:
​
* New audio mixer
* Bin monitor redesign
* Performance and usability improvements
* Many Windows fixes
* Master effects
* Re-implement scrolling trough compositions.
Check it out and report any issues:
[https://files.kde.org/kdenlive/unstable/kdenlive-19.12.0-beta1-x86\_64.appimage](https://files.kde.org/kdenlive/unstable/kdenlive-19.12.0-beta1-x86_64.appimage)
https://redd.it/e1l0yr
@r_linux
A story about how Sokibi uses LibreOffice and other FOSS to spread knowledge and love in Indonesia
https://blog.documentfoundation.org/blog/2019/11/25/community-member-monday-sokibi-indonesia/
https://redd.it/e1kf3f
@r_linux
https://blog.documentfoundation.org/blog/2019/11/25/community-member-monday-sokibi-indonesia/
https://redd.it/e1kf3f
@r_linux
The Document Foundation Blog
Community Member Monday: Sokibi, Indonesia - The Document Foundation Blog
A story about how Sokibi uses LibreOffice and other FOSS to spread knowledge and love Authors: Ahmad Haris and Franklin Weng Sokibi (no last name – it’s a typical Javanese old-style name) was born in a rural village, around 45KM away from Semarang City in…
A wiki version of The Linux Cookbook
Here is a wiki version of "The Linux Cookbook: Tips and Techniques for Everyday Use" by M.Stutz. See: [https://handwiki.org/wiki/Linux:Start](https://handwiki.org/wiki/Linux:Start) It can be updated (and extended!) on this wiki under the design license terms.
https://redd.it/e1ovap
@r_linux
Here is a wiki version of "The Linux Cookbook: Tips and Techniques for Everyday Use" by M.Stutz. See: [https://handwiki.org/wiki/Linux:Start](https://handwiki.org/wiki/Linux:Start) It can be updated (and extended!) on this wiki under the design license terms.
https://redd.it/e1ovap
@r_linux
handwiki.org
Linux tutorial - HandWiki
The Linux Cookbook: Tips and Techniques for Everyday Use. Wiki edition