Linux software installation guide: Easy to master the installation method of .deb and .tar files
Core points
- How to install .deb files in Linux systems depends on the complexity of the software, and can be installed directly or through terminal commands. For example, Dropbox can be installed directly, but if prompted to decompress the file, you need to use the
cd ~/Desktop/Dropbox_deb
andsudo dpkg -i *.deb
commands in the terminal. - Installation of .tar files in Linux systems involves decompressing shell files and executing them using terminal commands. For example, installing VeraCrypt requires the use of
chmod x veracrypt-1.18-setup-console-x64
andsh ./veracrypt-1.18-setup-console-x64
commands. - To uninstall Linux programs, use the
sudo apt-get remove
command followed by the program name. For example, to uninstall Dropbox, entersudo apt-get remove dropbox
in the terminal.
This tutorial briefly explains how to use terminal commands to install programs in Linux. This tutorial uses Linux Mint 18 (Cinnamon 64-bit), but the commands provided below are suitable for other versions of Linux, such as Ubuntu. For Linux beginners, you may be familiar with the built-in software manager:
In short, the Software Manager allows for easier installation of various programs by simply searching for available programs and installing them from the Manager. For example, if the user wants to install GIMP through the Software Manager, just find the program and install it:
However, installation in Linux is usually more complicated than this, as it usually requires installing the program directly from the source code. Here I will explain how to install two common extension types that often cause headaches for Linux beginners. (It really gave me a headache when I first started using it!)
We will learn how to install Debian (.deb) and Tarball (.tar.gz) files through the terminal. In this tutorial, Dropbox and VeraCrypt will be used as examples respectively. Common Disclaimer Applicable: These two programs are for illustration purposes only and this article does not endorse or promote any particular product.
-
Install Dropbox through .deb file
The difficulty of installing .deb files varies. In other words, some programs composed of .deb files allow for direct installation, while programs containing many separate .deb files usually have to be installed through the terminal. Let's take a look at an example of Dropbox installation .deb file.
First of all, we choose the Ubuntu 64-bit version (or the one that suits your system):
Next, the system prompts us to install the software package directly:
While this particular .deb file is easy to install, in some cases we have to install the .deb file directly from the terminal. For example, the program might prompt us to unzip the .deb file to a specific location and install it from there instead of installing it directly.
Take Dropbox as an example, let's assume we are prompted to decompress the file and then install it. For illustration purposes, let's name this folder Dropbox_deb, which is stored in our download folder. In this case, we will:
a. Set our directory to the Dropbox_deb folder in the download folder:
cd ~/Desktop/Dropbox_deb
b. Use the following command to install the .deb file:
sudo dpkg -i *.deb
-
Installing VeraCrypt through .tar file
In some cases, users must install through .tar files, which is the standard source code download method in Linux. Here we install VeraCrypt through the .tar.bz2 file (as highlighted in the yellow text in the image below):
After the download is completed, the system will prompt us to unzip the shell (sh) file. In this case, we will unzip it to the desktop:
After decompressing the sh files, just execute them with the corresponding terminal commands. We see that we have four separate sh files and we will execute the veracrypt-1.18-setup-console-x64 file. Note that there is no .sh extension at the end of this file: if it has, you need to add .sh at the end of the file in your terminal.
We open the terminal, set the directory to desktop (cd ~/Desktop), and run the command as follows:
chmod +x veracrypt-1.18-setup-console-x64
sh ./veracrypt-1.18-setup-console-x64
After completing this, we will see that the program prompts us to complete the installation in the terminal:
Please note that to uninstall the program through the terminal, it can be done through the sudo apt-get remove
command. For example, if the user wants to uninstall Dropbox, it can be done by typing the following command:
sudo apt-get remove dropbox
If you are new to Linux, be sure to spend some time familiarizing yourself with the new operating system, especially when it comes to installing programs, as many programs are not automatically included in the software manager. Here we introduce the two most common types of packages that are usually installed on Linux, and the key commands you need to keep in mind when installing new programs on Linux platforms.
FAQ for installing .deb and .tar files in Linux (FAQ)
What is the main difference between .deb and .tar files?
.deb and .tar files are both compressed file types used in Linux, but they have different uses. The .deb file is a Debian package that is used to install software in a Debian-based Linux distribution such as Ubuntu. They contain compiled binaries as well as metadata, such as the name, version, and dependencies of the software. On the other hand, the .tar file is a tape archive file. They are an archive file type that can contain any number of files and directories. They are usually used to distribute the source code of the software, which can then be compiled and installed on any Linux distribution.
How to install .deb files in Linux?
To install the .deb file in Linux, you can use the dpkg command. First, use the cd command to navigate to the directory containing the .deb file. Then, install it with the following command: sudo dpkg -i filename.deb
. Replace "filename.deb" with the name of your .deb file. You may need to enter the password for the sudo command.
How to install .tar file in Linux?
Installing the .tar file in Linux includes decompressing the archive file, and then compiling and installing the software. First, navigate to the directory containing the .tar file and unzip it with the following command: tar -xvf filename.tar
. Then, navigate to the unzipped directory and compile the software using the ./configure
, make
and sudo make install
commands.
What should I do if I encounter dependency issues when installing .deb files?
If you encounter dependency issues when installing .deb files, you can use the apt-get command to resolve them. After trying to install the .deb file using dpkg, install any missing dependencies using the following command: sudo apt-get install -f
.
Can I install .deb files in a non-Debian-based Linux distribution?
Although .deb files are designed for Debian-based distributions, they can be installed in other distributions using a tool like alien that converts .deb files to formats compatible with other distributions. However, this is usually not recommended as it can cause compatibility issues.
Can I install .tar files in any Linux distribution?
Yes, the .tar file can be installed in any Linux distribution. However, this process is more complicated than installing .deb files and requires compiling the software from source.
How to delete software installed from .deb files?
To delete software installed from .deb files, you can use the dpkg command with the -r option as follows: sudo dpkg -r packagename
. Replace "packagename" with the name of the package you want to delete.
How to delete software installed from .tar file?
Removing software installed from .tar files can be more complicated because it depends on how the software is installed. If the software is installed using make install, you can try using make uninstall in the software directory. However, this only works if the software-provided Makefile contains uninstall rules.
Can I install .deb or .tar files without using the command line?
Yes, many Linux distributions provide graphical tools for installing .deb files. For example, in Ubuntu, you can double-click the .deb file to open it in the Software Center and install it from there. However, installing .tar files usually requires the command line.
What are the risks of installing .deb or .tar files from untrusted sources?
Installing .deb or .tar files from untrusted sources can pose security risks because they may contain malicious code. Always make sure you trust the source of the file and consider checking the file's checksum to verify its integrity.
All pictures remain in their original format and location.
The above is the detailed content of Quick Tip: How to Install .deb and .tar Files in Linux. For more information, please follow other related articles on the PHP Chinese website!

The rise of Chinese women's tech power in the field of AI: The story behind Honor's collaboration with DeepSeek women's contribution to the field of technology is becoming increasingly significant. Data from the Ministry of Science and Technology of China shows that the number of female science and technology workers is huge and shows unique social value sensitivity in the development of AI algorithms. This article will focus on Honor mobile phones and explore the strength of the female team behind it being the first to connect to the DeepSeek big model, showing how they can promote technological progress and reshape the value coordinate system of technological development. On February 8, 2024, Honor officially launched the DeepSeek-R1 full-blood version big model, becoming the first manufacturer in the Android camp to connect to DeepSeek, arousing enthusiastic response from users. Behind this success, female team members are making product decisions, technical breakthroughs and users

DeepSeek released a technical article on Zhihu, introducing its DeepSeek-V3/R1 inference system in detail, and disclosed key financial data for the first time, which attracted industry attention. The article shows that the system's daily cost profit margin is as high as 545%, setting a new high in global AI big model profit. DeepSeek's low-cost strategy gives it an advantage in market competition. The cost of its model training is only 1%-5% of similar products, and the cost of V3 model training is only US$5.576 million, far lower than that of its competitors. Meanwhile, R1's API pricing is only 1/7 to 1/2 of OpenAIo3-mini. These data prove the commercial feasibility of the DeepSeek technology route and also establish the efficient profitability of AI models.

Website construction is just the first step: the importance of SEO and backlinks Building a website is just the first step to converting it into a valuable marketing asset. You need to do SEO optimization to improve the visibility of your website in search engines and attract potential customers. Backlinks are the key to improving your website rankings, and it shows Google and other search engines the authority and credibility of your website. Not all backlinks are beneficial: Identify and avoid harmful links Not all backlinks are beneficial. Harmful links can harm your ranking. Excellent free backlink checking tool monitors the source of links to your website and reminds you of harmful links. In addition, you can also analyze your competitors’ link strategies and learn from them. Free backlink checking tool: Your SEO intelligence officer

Midea will soon release its first air conditioner equipped with a DeepSeek big model - Midea fresh and clean air machine T6. The press conference is scheduled to be held at 1:30 pm on March 1. This air conditioner is equipped with an advanced air intelligent driving system, which can intelligently adjust parameters such as temperature, humidity and wind speed according to the environment. More importantly, it integrates the DeepSeek big model and supports more than 400,000 AI voice commands. Midea's move has caused heated discussions in the industry, and is particularly concerned about the significance of combining white goods and large models. Unlike the simple temperature settings of traditional air conditioners, Midea fresh and clean air machine T6 can understand more complex and vague instructions and intelligently adjust humidity according to the home environment, significantly improving the user experience.

DeepSeek-R1 empowers Baidu Library and Netdisk: The perfect integration of deep thinking and action has quickly integrated into many platforms in just one month. With its bold strategic layout, Baidu integrates DeepSeek as a third-party model partner and integrates it into its ecosystem, which marks a major progress in its "big model search" ecological strategy. Baidu Search and Wenxin Intelligent Intelligent Platform are the first to connect to the deep search functions of DeepSeek and Wenxin big models, providing users with a free AI search experience. At the same time, the classic slogan of "You will know when you go to Baidu", and the new version of Baidu APP also integrates the capabilities of Wenxin's big model and DeepSeek, launching "AI search" and "wide network information refinement"

AI Prompt Engineering for Code Generation: A Developer's Guide The landscape of code development is poised for a significant shift. Mastering Large Language Models (LLMs) and prompt engineering will be crucial for developers in the coming years. Th

This Go-based network vulnerability scanner efficiently identifies potential security weaknesses. It leverages Go's concurrency features for speed and includes service detection and vulnerability matching. Let's explore its capabilities and ethical


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
