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

Powershell: Install IIS

Run Powershell as Administrator, then run the command below to install IIS. Install-WindowsFeature Web-WebServer Check after installing Get-WindowsFeature *Web*

[PowerShell]: Powershell script uploading backup databases to ftp server

Author:  Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c Nhu cầu - Học sử dụng Powershell và áp dụng vào thực tế - Server chạy MS SQL được backup mỗi ngày và lưu các file backup ở folder mặc định "C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup" - Upload các file database backup về một ftp server khác để lưu "offsite" # Begin script # Thanks to: Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c # Khai báo folder chứa các file backup database, dưới đây là folder backup mặc định của MS SQL 2012 $Dir="C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup"   # ftp server $ftp = "ftp://IPAddres/subfolder/subsubfolder" $user = "usernamehere" $pass = "passwordhere" # DO NOT use $(Get-Date), use $d variable instead, otherwise SQL Agent gets error "The...