Skip to main content

Fedora Workstation: Notes

Fedora Linux 35

Fedora Workstation is an operating system for laptop and desktop computers, with a complete set of tools for developers and makers of all kinds.

Keep updating

November 2nd, 2021: Worth the wait: Fedora Linux 35 is here!

April 27th, 2021: Fedora Linux 34 is officially here!

October 27th, 2020: Fedora 33 is officially here!

April 28th, 2020: Fedora 32 is officially here!

October 29th, 2019: Fedora 31 is officially here!


sudo dnf upgrade --refresh
sudo dnf install dnf-plugin-system-upgrade
sudo dnf system-upgrade download --releasever=32
sudo dnf system-upgrade reboot

Fedora Workstation 32

Fedora 32
[tuyen@g73jh ~]$ lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch
Distributor ID: Fedora
Description:    Fedora release 32 (Thirty Two)
Release:        32
Codename:       ThirtyTwo
[tuyen@g73jh ~]$

Check startup applications

[tuyen@g73jh ~]$ ls -la ~/.config/autostart/
total 16
drwxrwxr-x.  2 tuyen tuyen 4096 Sep 30  2019 .
drwx------. 43 tuyen tuyen 4096 Oct 13 15:07 ..
-rw-r--r--.  1 tuyen tuyen  192 Sep 30  2019 remmina-applet.desktop
-rw-rw-r--.  1 tuyen tuyen  199 Nov  2 08:26 skypeforlinux.desktop
[tuyen@g73jh ~]$ 

Popular posts from this blog

MSSQL: Fix error 'Consistency validation for SQL Server registry keys'

While installing Microsof SQL Server 2012, I ran into the following error. "The SQL Server registry keys from a prior installation cannot be modified. To continue, see SQL Server Setup documentation about how to fix registry keys." How to fix Replace the D:\x64\FixSqlRegistryKey_x86.exe file with the original file from the ENU\SQLFULL_ENU.iso file downloading from Microsoft Download Center. This ISO file is 4.2GB. So you can click FixSqlRegistryKey_x86.exe to download this file only. After replacing that file, press Re-run to check. All rules are passed.

Export All Group Policy Objects

PS C:\Users\Administrator> Import-Module GroupPolicy PS C:\Users\Administrator> $today = Get-Date -F yyyyMMdd PS C:\Users\Administrator> $domain = "practicehabits.net" PS C:\Users\Administrator> Get-GPOReport -All -ReportType XML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.xml PS C:\Users\Administrator> Get-GPOReport -All -ReportType HTML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.html