Shiori is a bookmark manager application which allows you to easily save and organize your bookmarked web pages. In this tutorial, we will guide you through the process of installing Shiori on Fedora CoreOS latest release.
sudo
privilegesBefore we can install Shiori, we need to install some packages required for its running. Open the terminal window and run the following command:
sudo dnf install git wget unzip
We will download and install Shiori using wget
and unzip
commands. Use the following commands to download the latest release of Shiori and extract it to the /opt/shiori
directory:
mkdir /opt/shiori
cd /opt/shiori
sudo wget https://github.com/go-shiori/shiori/releases/latest/download/shiori_linux_amd64.zip
sudo unzip shiori_linux_amd64.zip
Create a Systemd service file to run Shiori as a background service. Run the following commands to create the file:
sudo nano /etc/systemd/system/shiori.service
And add the following contents:
[Unit]
Description=Shiori bookmark manager
After=network.target
[Service]
WorkingDirectory=/opt/shiori
ExecStart=/opt/shiori/shiori
User=shiori
Group=shiori
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=shiori
[Install]
WantedBy=multi-user.target
After copying the contents, save and close the file.
Create a dedicated user account for Shiori by running the following command:
sudo useradd -m -s /bin/bash shiori
Next, set a password for the user:
sudo passwd shiori
To start and enable Shiori service, run the following commands:
sudo systemctl daemon-reload
sudo systemctl enable shiori.service
sudo systemctl start shiori.service
Shiori is now installed and running on your system. Open your web browser and navigate to http://<your-server-IP>:8080/
, and you should see the Shiori homepage.
In this tutorial, we showed you how to install Shiori bookmark manager application on Fedora CoreOS. You can now start bookmarking your favorite web pages and organizing them with Shiori.
For more information on using Shiori, refer to its official documentation at https://github.com/go-shiori/shiori.
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!