In which directory is the linux software installed?
There are two main locations for Linux software installation: 1. The "/opt" directory is a directory for installing additional software on the host. It is a user-level program directory. It is often used to place additional large-scale programs. Software; 2. The "/usr/local" directory is a user-level program directory under "/usr". Software installed by users generally chooses to install it in this directory.
The operating environment of this tutorial: Windows 7 system, Dell G3 computer.
Linux software installation
There are two main installation locations under Linux, which are the /opt directory and the /usr/local directory.
/opt directory
opt is the abbreviation of optional. This is the directory where additional software is installed for the host. It is a user-level program directory. , the default is empty.
This is often used to place additional large-scale software. For example, if you install an ORACLE database, you can place it in this directory.
/usr directory
- usr is the abbreviation of unix shared resources (shared resources). This is a very important system-level directory for many applications of the system. Programs and files are placed in this directory. Among them, /usr/src is the system source code storage directory.
- This directory is generally managed by the software package manager (yum, apt).
/usr/local directory
- /usr/local is a user-level program directory under /usr, for software installed by the user. Generally choose to install to this directory. Among them,
/usr/local/src
is the user-level source code storage directory. - This directory is generally managed by the user himself.
Summary
Most of the installation paths under Linux are completely determined by yourself. The above is just a suggestion. Other factors need to be considered during actual installation. In general Generally speaking, the installation location is determined based on ease of use and management. Generally, large-scale software or some service programs are installed in the /opt directory, and ordinary software is generally installed in the usr/local directory.
Linux Check the software installation path
In Linux, if the user does not set the installation path according to the above method, what should I do? Find the location (installation path) of the software and learn about it below.
Method 1: whereis software name
Take querying MySQL as an example
whereis mysql # 结果 mysql: /usr/bin/mysql /usr/lib64/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz
Method 2: ps -ef|grep software name
and ls -l /proc/process number/cwd
if the installed software It is already running and can be queried according to the software running process number
Take redis as an example
ps -ef|grep redis # 结果 duni 2246 1 0 Feb19 ? 00:09:09 ./redis-server 127.0.0.1:6379 ls -l /proc/2246/cwd # 结果,cwd后面不加/ lrwxrwxrwx 1 duni duni 0 Feb 19 17:46 /proc/2246/cwd -> /home/duni/DuniSoftware/redis-3.2.3/src
/proc The file system is A mechanism used by the kernel and kernel modules to send information to processes (hence the name /proc). This pseudo file system allows you to interact with the kernel's internal data structures, obtain useful information about the process, and change settings on the fly (by changing kernel parameters). Unlike other file systems, /proc exists in memory rather than on the hard disk. The proc file system provides access interfaces to user space in the form of files. These interfaces can be used to obtain information about related components or modify the behavior of components at runtime, so it is a very convenient interface.
##Expand knowledge:
Common directories and uses:
/bin stores binary executable files (ls, cat, mkdir, etc.), and commonly used commands are generally found here. /etc stores system management and configuration files /home is the root directory where all user files are stored. It is the basis of the user's home directory. For example, the home directory of user user is /home/user. Use ~user to indicate /usr is used to store system applications. The more important directory /usr/local is the local system administrator software installation directory (installation of system-level applications). This is the largest directory, and almost all the applications and files you need to use are in this directory. /usr/x11r6 Directory for storing x window/usr/bin Numerous applications/usr/sbin Some management programs for super users/usr/doc Linux documentation /usr/include Header files required to develop and compile applications under Linux /usr/lib Commonly used dynamic link libraries and software package configuration files /usr/man Help document/usr/src Source code, the source code of the Linux kernel is placed in /usr/src/linux/usr/local /bin Locally added commands/usr/local/lib Locally added libraries/opt The location where additional installed optional application packages are placed. Under normal circumstances, we can install tomcat, etc. here./proc The virtual file system directory is a mapping of system memory. This directory can be accessed directly to obtain system information.
/root The home directory of the super user (system administrator) (privileged class o)
/sbin stores binary executable files and can only be accessed by root. Stored here are system-level management commands and programs used by system administrators. Such as ifconfig, etc.
/dev is used to store device files.
/mnt The system administrator installs the installation point of the temporary file system. The system provides this directory to allow users to temporarily mount other file systems.
/boot stores various files used during system boot
/lib stores shared libraries and kernel modules required to run programs in the file system. The shared library is also called a dynamic link shared library. It functions like a .dll file in Windows and stores the shared files required to run the root file system program.
/tmp is used to store various temporary files and is a public temporary file storage point.
/var is used to store files that need to change data during operation. It is also the overflow area of some large files, such as log files of various services (system startup logs, etc.).
Related recommendations: "Linux Video Tutorial"
The above is the detailed content of In which directory is the linux software installed?. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

vscode built-in terminal is a development tool that allows running commands and scripts within the editor to simplify the development process. How to use vscode terminal: Open the terminal with the shortcut key (Ctrl/Cmd). Enter a command or run the script. Use hotkeys (such as Ctrl L to clear the terminal). Change the working directory (such as the cd command). Advanced features include debug mode, automatic code snippet completion, and interactive command history.

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.