One linux command per day: grep command
The grep command in Linux system is a powerful text search tool. It can use regular expressions to search text and print matching lines. The full name of grep is Global Regular Expression Print, which represents the global regular expression version, and its permission is for all users.
grep works by searching for string templates in one or m ...
Posted by sepodati on Thu, 28 Mar 2019 06:30:31 -0700
One linux command per day: the ifconfig command
Many windows are very familiar with the ipconfig command line tool, which is used to obtain and modify network interface configuration information. Linux systems have a similar tool, ifconfig(interfaces config). Usually you need to log in as root or use sudo to use the ifconfig tool on your Linux machine. Depending on the option attributes use ...
Posted by BigJohn on Wed, 27 Mar 2019 15:21:29 -0700
One linux command per day: ss command
ss is the abbreviation of Socket Statistics. As the name implies, the ss command can be used to obtain socket statistics, which can display content similar to netstat. But the advantage of ss is that it can display more detailed information about TCP and connection status, and it is faster and more efficient than netstat.
When the number of s ...
Posted by phpfreak101 on Wed, 27 Mar 2019 11:36:29 -0700
One linux command per day: ps command
The ps command in Linux is the abbreviation of Process Status. The ps command lists the processes currently running in the system. The ps command lists snapshots of the current processes, which are those processes at the time of execution of the ps command. If you want to dynamically display process information, you can use the top command.
T ...
Posted by jsscart on Wed, 27 Mar 2019 09:42:30 -0700
One linux command per day: xargs of find command
When processing matched files with the - exec option of the find command, the find command passes all matched files together to exec for execution. But some systems limit the length of commands that can be passed to exec, so that overflow errors occur after the find command runs for a few minutes. Error messages are usually "parameter col ...
Posted by d~l on Tue, 26 Mar 2019 06:36:29 -0700
One linux command per day: tar command
Through SSH access to the server, it is inevitable to use compression, decompression, packaging, unpacking and so on. At this time, tar command is an indispensable powerful tool. The most popular tar in linux is sparrow, which is small, full of internal organs and powerful.
The tar command creates files for linux files and directories. With t ...
Posted by JaclynM on Sun, 24 Mar 2019 16:48:29 -0700
How to use fleet and fleetctl to manage CoreOS cluster
Provide: ZStack Cloud Computing
Series of tutorials
This tutorial is for CoreOS Upper Finger Guide The third of nine articles in the series.
Content introduction
CoreOS provides us with a Docker container management platform across multi-server environments, and fleet services can significantly simplify the management of the entire clus ...
Posted by james182 on Sat, 23 Mar 2019 04:09:57 -0700
Suspender teaches you 9 tricks to protect your linux server security
No important system can ignore server security, especially in the public cloud. There are many online tips and tutorials on this subject. Here we only look at a few basic and common best practices.
Several security measures to be implemented after system configuration is completed
Take Ubuntu 16.04 as an example:
1. Update the kernel ...
Posted by patricklcam on Fri, 22 Mar 2019 15:18:52 -0700
How to Open SSH Service on Port 80 of Web Server
The network port multiplexing discussed in this paper does not refer to Socket Bind multiplexing with SO_REUSEADDR option in network programming. It is more like a port forwarding tool with a specific routing function, implemented in the application layer.
background
The firewall in my network only opens one port, but I hope to provide a variet ...
Posted by jon23d on Thu, 21 Mar 2019 03:54:52 -0700
[2019.03.20]Linux Shell executes transfer parameters and expr
Not long ago, interns, now in the group to help dalao s run Case, from time to time to collect a wood Dump, every time the command is too annoying, so forced to learn to write their own Shell scripts. It was really painful at first, and I couldn't get any books. I could only draw pictures with half-truthful and half-truthful information on the ...
Posted by theqase on Wed, 20 Mar 2019 16:45:26 -0700