


There are two main locations for Linux software installation: 1. The "/opt" directory is a directory where additional software is installed for the host. It is a user-level program directory. Here It is often used to place additional large-scale 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.
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. The system Many applications 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 , software installed by users generally chooses to install it in 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 entirely determined by yourself. The above is just a suggestion. Other factors need to be considered during actual installation. , in general, the installation location is determined for 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, how to find the location of the software ( Installation path), let’s find out 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.
Extended knowledge:
Common directories and uses:
/bin stores binary executables 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 and 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 where x window is stored
/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 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 is the installation point where the system administrator installs 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.).
The above is the detailed content of What is the directory where linux software is installed?. For more information, please follow other related articles on the PHP Chinese website!

MaintenanceModeinLinuxisaspecialbootenvironmentforcriticalsystemmaintenancetasks.Itallowsadministratorstoperformtaskslikeresettingpasswords,repairingfilesystems,andrecoveringfrombootfailuresinaminimalenvironment.ToenterMaintenanceMode,interrupttheboo

The core components of Linux include kernel, file system, shell, user and kernel space, device drivers, and performance optimization and best practices. 1) The kernel is the core of the system, managing hardware, memory and processes. 2) The file system organizes data and supports multiple types such as ext4, Btrfs and XFS. 3) Shell is the command center for users to interact with the system and supports scripting. 4) Separate user space from kernel space to ensure system stability. 5) The device driver connects the hardware to the operating system. 6) Performance optimization includes tuning system configuration and following best practices.

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.

Linux maintenance mode can be entered through the GRUB menu. The specific steps are: 1) Select the kernel in the GRUB menu and press 'e' to edit, 2) Add 'single' or '1' at the end of the 'linux' line, 3) Press Ctrl X to start. Maintenance mode provides a secure environment for tasks such as system repair, password reset and system upgrade.

The steps to enter Linux recovery mode are: 1. Restart the system and press the specific key to enter the GRUB menu; 2. Select the option with (recoverymode); 3. Select the operation in the recovery mode menu, such as fsck or root. Recovery mode allows you to start the system in single-user mode, perform file system checks and repairs, edit configuration files, and other operations to help solve system problems.

The core components of Linux include the kernel, file system, shell and common tools. 1. The kernel manages hardware resources and provides basic services. 2. The file system organizes and stores data. 3. Shell is the interface for users to interact with the system. 4. Common tools help complete daily tasks.

The basic structure of Linux includes the kernel, file system, and shell. 1) Kernel management hardware resources and use uname-r to view the version. 2) The EXT4 file system supports large files and logs and is created using mkfs.ext4. 3) Shell provides command line interaction such as Bash, and lists files using ls-l.

The key steps in Linux system management and maintenance include: 1) Master the basic knowledge, such as file system structure and user management; 2) Carry out system monitoring and resource management, use top, htop and other tools; 3) Use system logs to troubleshoot, use journalctl and other tools; 4) Write automated scripts and task scheduling, use cron tools; 5) implement security management and protection, configure firewalls through iptables; 6) Carry out performance optimization and best practices, adjust kernel parameters and develop good habits.


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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.