How to Install transfer.sh on Debian Latest
Transfer.sh is an open-source tool that helps users to easily share large files without using any external storage devices. it allows users to transfer files of up to 10 GB with ease. In this tutorial, we will guide you through the process of installing transfer.sh on Debian Latest.
Prerequisites
Before getting started, make sure you have the following prerequisites:
- A Debian Latest system
- A non-root user with sudo privileges.
Step 1: Update the System
First, login to your Debian system and update the system to the latest version using the following command:
$ sudo apt update
$ sudo apt upgrade
Step 2: Install Dependencies
Next, you need to install some dependencies required by Transfer.sh. Run the following command to install them:
$ sudo apt-get install curl wget tar
Step 3: Install transfer.sh
Transfer.sh provides an installation script that installs transfer.sh on your system. Use the following command to download and run the script:
$ curl --proto '=https' --tlsv1.2 -sSL https://raw.githubusercontent.com/transferwise/transfer.sh/master/src/install.sh | sh
Step 4: Start Transfer.sh
The installation script will start the service automatically. If by some chance, the script didn't start the service, use the following command to start the service manually:
$ sudo systemctl start transferwise.service
Step 5: Verify Transfer.sh is Running
After starting the service successfully, you may verify whether it is running by running the following command:
$ systemctl status transferwise.service
It should display the service status as "active (running)."
Step 6: Upload Files Using transfer.sh
Transfer.sh is easy to use. To upload a file to transfer.sh, simply use the following command:
$ curl --upload-file <filename> https://transfer.sh/<filename>
Conclusion
We have successfully installed transfer.sh on Debian Latest. Now you can easily share large files using Transfer.sh. If you encounter any problem, please let us know in the comments below.