Sixth, the traditional IDC deployment site

A, find command

ctrl l clear screen ctrl d exit terminal ctrl c ctrl u termination command to delete all the things in front of the cursor is moved to the rearmost ctrl e ctrl a cursor to be moved to the front
find several uses: -type file or directory search -mtime created days -mmin minutes -size creation time or file size -o -name filename search -exec
Find route usage Find + + a search condition such as a column type + file name + file creation time
find / etc / -type -d ( f) conditions for the directory or file search
the Find / etc / The -type name " .conf" file name search
find / etc / -type -mtime to create the time to search for
find / etc / -type -f -o -mtime -1 -name -o "
.conf"
the Find / -inum inode number to find a few hard links using this iNode No.
stat used to view files three time
mtime = created
atime = recent visit
ctime = recent changes to
change the contents of the file ctime is bound to get, because you change the contents of the file size, permissions, and time, it is bound to get ctime

Find / the root / -type -120 F -mmin LS -exec {} -l \;
Find / the root / F -type -size -10K LS -LH -exec {} \; View File Size
Sixth, the traditional IDC deployment site

Sixth, the traditional IDC deployment site

Sixth, the traditional IDC deployment site

Two, Linux and Windows each file transfer

Must be Xshell or CRT putty does not also need to install a support package lrzsz -y install yum
Linux to Windows with SZ SZ upload the file name plus
Windows to Linux using the last RZ directly enter
Sixth, the traditional IDC deployment site

Guess you like

Origin blog.51cto.com/13292790/2434868