Fix Gnome Software Stuck With “Software catalog is being loaded” Message
killall gnome-software rm -rf ~/.cache/gnome-software
References
https://www.linuxuprising.com/2019/03/fix-gnome-software-stuck-with-software.html
Daily Notes of a Programmer
killall gnome-software rm -rf ~/.cache/gnome-software
References
https://www.linuxuprising.com/2019/03/fix-gnome-software-stuck-with-software.html
rm -r ~/.wine
sudo dnf install wine-core.i686
sudo dnf install winetricks
export WINEARCH=win32
wineboot --init
winetricks
References
https://www.reddit.com/r/Fedora/comments/8m54ju/32bit_wine_for_steam/
https://forum.manjaro.org/t/wine-could-not-load-kernel32-dll-status-c0000135/69811/2
sudo dnf install samba sudo systemctl enable smb --now firewall-cmd --get-active-zones sudo firewall-cmd --permanent --zone=FedoraWorkstation --add-service=samba sudo firewall-cmd --reload
Samba does not use the operating system users for authentication, so your user account must be duplicated in Samba. So if your account is jane on the host, the user jane must also be added to Samba. While the usernames must match, the passwords can be different.
sudo smbpasswd -a jane
mkdir /home/jane/share sudo semanage fcontext --add --type "samba_share_t" ~/share sudo restorecon -R ~/share
sudo nano /etc/samba/smb.conf
[share] comment = My Share path = /home/jane/share writeable = yes browseable = yes public = yes create mask = 0644 directory mask = 0755 write list = user
sudo systemctl restart smb
Disable SELinux if required
sudo nano /etc/selinux/config
SELINUX=disabled
sudo reboot
References
https://docs.fedoraproject.org/en-US/quick-docs/samba/
https://www.cyberciti.biz/faq/disable-selinux-on-centos-7-rhel-7-fedora-linux/
sudo dnf install android-tools
adb reboot recovery
References
https://xiaomiadvices.com/boot-into-custom-recovery-cwm-twrp-android/
https://www.reddit.com/r/Fedora/comments/hbqy2s/adb_on_fedora/
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
dnf check-update sudo dnf install code
echo 'fastestmirror=1' | sudo tee -a /etc/dnf/dnf.conf echo 'max_parallel_downloads=10' | sudo tee -a /etc/dnf/dnf.conf
cat /etc/dnf/dnf.conf
References
https://mutschler.eu/linux/install-guides/fedora-post-install/
https://dnf.readthedocs.io/en/latest/conf_ref.html
sudo dnf install nss-tools
Setup Firefox
echo 'pref("general.config.filename", "firefox.cfg"); pref("general.config.obscure_value", 0);' > ./autoconfig.js echo '//Enable policies.json lockPref("browser.policies.perUserDir", false);' > firefox.cfg echo "{ \"policies\": { \"Certificates\": { \"Install\": [ \"aspnetcore-localhost-https.crt\" ] } } }" > policies.json dotnet dev-certs https -ep localhost.crt --format PEM sudo mv autoconfig.js /usr/lib64/firefox/ sudo mv firefox.cfg /usr/lib64/firefox/ sudo mv policies.json /usr/lib64/firefox/distribution/ mkdir -p ~/.mozilla/certificates cp localhost.crt ~/.mozilla/certificates/aspnetcore-localhost-https.crt
Trust Edge/Chrome
certutil -d sql:$HOME/.pki/nssdb -A -t "P,," -n localhost -i ./localhost.crt certutil -d sql:$HOME/.pki/nssdb -A -t "C,," -n localhost -i ./localhost.crt
Trust dotnet-to-dotnet
sudo cp localhost.crt /etc/pki/tls/certs/aspnetcore-localhost-https.pem sudo update-ca-trust
Cleanup
rm localhost.crt
References
https://docs.microsoft.com/en-us/aspnet/core/security/enforcing-ssl?view=aspnetcore-6.0&tabs=visual-studio#trust-https-certificate-on-linux
https://github.com/dotnet/aspnetcore/issues/32842
https://github.com/dotnet/aspnetcore/issues/32361
rpm -qa |grep -i repo-name
rpm -e some-repository-rpm-package
References
https://www.if-not-true-then-false.com/2010/yum-remove-repo-repository-yum-disable-repo-repository/