Commands for viewing system information and commands for viewing installed software packages in Linux

Source: Internet
Author: User
System # uname-a # View kernel/OS/CPU information # head-n1/etc/issue # View OS # cat/proc/cpuinfo # View CPU information # hostname # View computer name # lspci-TV # List all PCI devices # ls...

 

 

System

 

# Uname-a # View kernel/operating system/CPU information

# Head-n 1/etc/issue # view the operating system version

# Cat/proc/cpuinfo # View CPU information

# Hostname # view the computer name

# Lspci-TV # List all PCI devices

# Lsusb-TV # List all USB devices

# Lsmod # List loaded kernel modules

# Env # View environment variables

Resources

 

# Free-m # View memory usage and swap zone usage

# Df-h # view the usage of each partition

# Du-sh <目录名> # View the size of a specified directory

# Grep MemTotal/proc/meminfo # View total memory

# Grep MemFree/proc/meminfo # view the amount of idle memory

# Uptime # View system running time, number of users, and load

# Cat/proc/loadavg # View system load

Disks and partitions

 

# Mount | column-t # view the status of the mounted partition

# Fdisk-l # View all partitions

# Swapon-s # View all swap partitions

# Hdparm-I/dev/hda # View disk parameters (only applicable to IDE devices)

# Dmesg | grep IDE # view the IDE device detection status at startup

Network

 

# Ifconfig # view the attributes of all network interfaces

# Iptables-L # View firewall settings

# Route-n # view the route table

# Netstat-lntp # View all listening ports

# Netstat-antp # View all established connections

# Netstat-s # View network statistics

Process

 

# Ps-ef # View all processes

# Top # Display process status in real time

User

 

# W # View active users

# Id <用户名> # Viewing specified user information

# Last # View user logon logs

# Cut-d:-f1/etc/passwd # View all users in the system

# Cut-d:-f1/etc/group # View all groups in the system

# Crontab-l # view the scheduled tasks of the current user

Service

 

# Chkconfig -- list # list all System Services

# Chkconfig -- list | grep on # list all started System Services

Program

 

# Rpm-qa # View all installed software packages

 

 

 

 

RPM

 

In a Linux operating system, there is a system software package, which functions similar to "add/delete programs" in Windows, but is much more powerful than "add/delete programs, it is Red Hat Package Manager (RPM ). This toolkit was first launched by Red Hat and later borrowed by other Linux developers. Because it saves Linux users a lot of time, it is widely used to install and delete software in Linux. The following describes how to use it.

 

1. we get a new software, before installation, usually first check what content in this package, assuming the file is: Linux-1.4-6.i368.rpm, we can use this command to view:

 

Rpm-qpi Linux-1.4-6.i368.rpm

 

The system will list detailed information about the software package, including the number of files, file names, file size, creation time, and compilation date.

 

2. all the files listed above are not necessarily installed at the time of installation, just as the installation methods of Windows programs are classified into typical, complete, and custom. Linux also allows you to choose the installation method, in this case, we can use the following command to check which parts of the software package will be installed in the system to facilitate our selection:

 

Rpm-qpl Linux-1.4-6.i368.rpm

 

3. select the installation method and start installation. We can install this software with the rpm-ivh Linux-1.4-6.i368.rpm command. During the installation process, if the system prompts that the software has been installed or cannot be installed for other reasons, but if we do want to execute the installation command, you can add the parameter "-replacepkgs" after-ivh ":

 

Rpm-ivh-replacepkgs Linux-1.4-6.i368.rpm

 

4. sometimes we only need to execute rpm-e to uninstall a software installed. <文件名> ; Command.

 

5. upgrading a lower version of the software is a good way to improve its functions. This saves us the trouble of installing new software after uninstalling it. to upgrade a software, you only need to execute the following command: rpm-uvh <文件名> ;, Note: the file name must be the software upgrade patch?

 

6. another method for installing software is Linux's unique feature. it is also a manifestation of RMP's powerful functionality: directly installing software online through FTP sites. When you find a site that contains the software you need and connect to this site, execute the following command to achieve online installation, such as online installation of Linux-1.4-6.i368.rpm, you can use the command:

 

Rpm-I ftp://ftp.pht.com/pub/linux/redhat/...-1.4-6.i368.rpm

 

7. when we use computers, we will inevitably encounter misoperations. if we accidentally delete a few files and affect the system performance, how can we find out which files are missing? The RPM package provides a function to find corrupted files. run this command: rpm-Va. Linux will list all corrupted files for you. You can fix the issue through the Linux installation CD.

 

8. in Linux, there are many files, which we will inevitably encounter when using. in Windows, we can use the "start/search" menu to quickly determine which folder a file belongs, in Linux, the following command line can help us quickly determine which software package a file belongs:

 

Rpm-qf <文件名> ;

 

9. after each software package is installed in Linux, the installation file is "reported" in the RPM Database. Therefore, when we want to query the attributes of an installed software, you only need to search for the database. Note: the query command is different from the query commands described in 1 and 8. this method is only applicable to installed software packages! Command format:

 

Rpm-parameters <文件名> ;

 

 

 

APT-GET

 

Apt-get update -- run this command after modifying/etc/apt/sources. list or/etc/apt/preferences. In addition, you need to regularly run this command to ensure that your package list is up-to-date.

Apt-get install packagename -- install a new software package (see aptitude below)

Apt-get remove packagename -- uninstall an installed software package (keep the configuration file)

Apt-get -- purge remove packagename -- uninstall an installed software package (delete the configuration file)

Dpkg -- force-all -- purge packagename some software is hard to uninstall, and it can be used to block other software applications, but it is a little risky.

Apt-get autoclean apt will back up installed or unloaded software on the hard disk, so if you need space, you can run this command to delete the software you have deleted.

The apt-get clean command will also delete the backup of the installed software, but this will not affect the use of the software.

Apt-get upgrade -- update all installed software packages

Apt-get dist-upgrade -- upgrade the system to the new version.

Apt-cache search string -- search for strings in the package list

Dpkg-l package-name-pattern -- list all software packages that match the pattern. If you do not know the full name of the software package, you can use "* package-name-pattern *".

Aptitude-View installed or available software packages in detail. Similar to apt-get, aptitude can be called through the command line, but is limited to some commands-the most common commands are installation and uninstallation. Because aptitude knows more information than apt-get, it is more suitable for installation and uninstallation.

Apt-cache showpkg pkgs -- displays the package information.

Apt-cache dumpavail -- print the list of available packages.

Apt-cache show pkgs -- displays software package records, similar to dpkg-print-avail.

Apt-cache pkgnames -- print the names of all packages in the package list.

Dpkg-S file -- the package to which the file belongs.

Dpkg-L package -- list all files in the package.

Apt-file search filename -- search for software packages containing specific files (not necessarily installed). the file names contain specified strings. Apt-file is an independent software package. You must first install apt-get install and then run apt-file update. If apt-file search filename outputs too much content, you can try to use apt-file search filename | grep-w filename (only show the names of the complete words in the specified string) or similar methods, such: apt-file search filename | grep/bin/(only files in folders such as/bin or/usr/bin are displayed. if you are looking for a specific execution file, this is helpful ).

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.