How to Install Shiori on Kali Linux
Shiori is an open-source bookmark manager that allows you to easily store, search, and tag bookmarks. In this tutorial, we will guide you through the process of installing Shiori on Kali Linux.
Prerequisites
Before we begin, make sure you have the following:
- Kali Linux installed and running
- An active internet connection
- A terminal emulator
Install Dependencies
Open the terminal emulator and type the following command to update the package manager:
sudo apt updateNext, install the required dependencies by entering the following command into the terminal session:
sudo apt install git golang mariadb-server mariadb-clientOnce the installation is complete, start the MariaDB database server by running the command:
sudo systemctl start mariadbNow, secure the MariaDB server installation by running:
sudo mysql_secure_installationFollow the on-screen instructions to set the root password and secure the installation.
Download and Install Shiori
Open the terminal emulator and navigate to the directory where you want to install Shiori by entering the following command:
cd /path/to/your/directory/Clone the Shiori repository from Github using the Git command:
git clone https://github.com/go-shiori/shiori.gitChange directory to the Shiori folder and run the following command to build the binaries:
cd shiori make buildOnce the binaries are built, create a new database for Shiori by entering the following command:
mysql -u root -p < scripts/sqlite3.sqlThis will create a new database named
shiori.Next, initialize the Shiori server and create a new user account by running:
./shiori account addFollow the on-screen instructions to set a username, email, and password for your account.
Finally, start the Shiori server by running:
./shiori serveYou can now access Shiori on your local machine by going to
http://localhost:8080/in your web browser.
Conclusion
In this tutorial, you learned how to install Shiori on Kali Linux. Shiori is a powerful bookmark manager that makes it easy to organize and search your bookmarks. With Shiori, you can store all of your bookmarks in one place and access them from anywhere.