Ubuntu qBittorrent-nox

Install qBittorrent-nox on Ubuntu Server

Install qBittorrent-nox on Ubuntu Server Update ubuntu sudo apt update && sudo apt upgrade -y Import qBittorrent-nox Stable sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable -y Import qBittorrent-nox Unstable (Nightly) sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-unstable -y Reflect the newly added PPA sudo apt update Install qBittorrent-nox sudo apt install qbittorrent-nox -y Create usergroup sudo adduser --system --group qbittorrent-nox # on fedora sudo groupadd qbittorrent-nox Add you to usergroup sudo adduser your-username qbittorrent-nox # on fedora sudo usermod -aG qbittorrent-nox your-username Create a systemd service file sudo vim /etc/systemd/system/qbittorrent-nox.service [Unit] Description=qBittorrent Command Line Client After=network.target [Service] Type=forking User=qbittorrent-nox Group=qbittorrent-nox UMask=022 ExecStart=/usr/bin/qbittorrent-nox -d --webui-port=8080 Restart=on-failure [Install] WantedBy=multi-user.target Reload systemctl sudo systemctl daemon-reload Start qBittorrent-nox sudo systemctl start qbittorrent-nox Enable qBittorrent-nox sudo systemctl enable qbittorrent-nox Check if qBittorrent-nox start systemctl status qbittorrent-nox Login in to your qBittorrent-nox Item Value username admin password adminadmin How to Remove qBittorrent-nox # Remove qBittorrent Stable sudo add-apt-repository --remove ppa:qbittorrent-team/qbittorrent-stable # Remove qBittorrent Unstable (Nightly) sudo add-apt-repository --remove ppa:qbittorrent-team/qbittorrent-unstable -y # Remove qBittorrent sudo apt autoremove qbittorrent-nox

November 11, 2022 · Aimer Neige
Fedora WeChat

Install WeChat on Fedora

Install WeChat on Fedora Install Wine sudo dnf install wine Adjust DPI Config Use bellow command to open winecfg winecfg Adjust the dpi to a suitable value at tab Graphics. (4k monitor, 192 dpi) Download And Config Fonts Run the following commands sudo dnf install cabextract sudo dnf install winetricks winetricks corefonts gdiplus riched20 riched30 Download & Install WeChat Just download the exe Installer. (Same with download it from browser.) ...

November 10, 2022 · Aimer Neige
WiFi Logo

Auto Start Wifi Hotspot on Gnome

Edit and save file nmcli-hotspot.desktop on path /home/aimerneige/.config/autostart [Desktop Entry] Name=nmcli-hotspot Comment=Open HotSport With nmcli Exec=nmcli connection up Hotspot Terminal=true Type=Application

November 7, 2021 · Aimer Neige
WiFi Logo

Vala Env Setup

vala env setup When it’s talking to Linux development, there are many ways to go. But I love elementary and want to build some awesome apps with vala. So this article is about how to set up your vala develop environment on elementary os. In the future, there will more articles about vala and Linux development. System Info When I write this artice (2021-7-31), elementary os 6 is still in develop, so I install it in gnome boxes. My host machine syetem is fedora 34. ...

October 23, 2021 · Aimer Neige

Enable USB for VirtualBox on Ubuntu

Different from Windows, if you wants to use usb enabled to VirtualBox, you must edit a config file, which is needn’t on Windows. I can’t remember it and search for web many times because when you set it, you need’t to edit it twice. But sometimes, I will reinstall my ubuntu and the config will lost, so I wants to save it on my Blog in case one day I will use it. ...

July 26, 2020 · Aimer Neige