Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Linux 101 hack book reading notes     - Two alert log ORA Errors (Database)

- Linux FTP setting file description (Server)

- Teach you how to synchronize Microsoft OneDrive in Linux (Linux)

- Redis is installed in Ubuntu 14.04 (Database)

- Linux static library generated Guide (Programming)

- Use calcurse schedule appointments and to-do in the Linux terminal (Linux)

- Puppet installation and testing (Server)

- Linux Hard Disk Partition and file system management (Linux)

- Android 4.2 compilation notes (Programming)

- Security enhancements in Ubuntu ssh service (Linux)

- VirtualBox CentOS is configured as a local disk mirroring software source (Linux)

- C ++ casts New Standard Comments (Programming)

- NET Developers need to know some Linux commands (Linux)

- To install Redis under Linux (Database)

- How to disable IPv6 in the CentOS 7 (Linux)

- How to limit network bandwidth usage in Linux (Linux)

- Linux operating system to solve a serious fault handling (Linux)

- MD5 and simple to use (Linux)

- Oracle 11g through SCN do incremental backup repair standby library detailed process (Database)

- pscp use Detailed Windows and Linux each file transfer tool (Linux)

 
         
  Linux 101 hack book reading notes
     
  Add Date : 2018-11-21      
         
         
         
  Modify ~ / .bashrc
alias .. = "cd ../ .."

grep [options] pattern filename

find Find files
find / etc --name "* mail *" / etc directory under the file name contains mail files
find. -mtime +10 10 days did not modify the current directory
find. -mtime -2 modify the current directory last 2 days

xargs as output as input to another command parameters
find / etc -name "* .conf" | xargs ls -l
Lists / ect at the end of the conf file obtained as a result of the input parameters of ls -l

sort -t: -u -k 3 nams.txt
Use: The third separated as line items are sorted, -u indicates remove duplicate
ps -ef | sort and other commands with

cut -d: -f 1,3 text.txt
Showing 1 of 3 lines, separated by colons, separated by a colon display

stat display file attribute information

Know today, tar is the meaning of the archive, always thought it was a tragedy compression
tar -cvf /tmp/log.tar ~ / text
c Create archive
v display during execution of a command
f specify the archive file name
x extract files from the archive

Unzip tar.gz
You need to specify z
tar -zxvf /tem/log.tar.gz

Unzip gzip2
You need to specify j
tar -jxvf /tmp/log.tar.bz2

gzip is faster
bzip compression rate is relatively high
     
         
         
         
  More:      
 
- Android using SVG vector graphics to create cool animation effects (Programming)
- The need to avoid a gap of InnoDB lock (Database)
- Keepalived + Nginx Installation and Configuration (Server)
- Java reflection technology explain (Programming)
- HBase vs Oracle (Database)
- Create and modify Oracle temporary table space (Database)
- C ++ in the elimination Wunused (Programming)
- Bash command substitution (Programming)
- Debian users to install FFmpeg 2.2.2 (Linux)
- Why everybody ought to know LLVM (Linux)
- Linux and Unix systems really do network more secure (Linux)
- Gentoo: startx problem appears Failed to load module (Linux)
- BGP routers want to play it by CentOS (Linux)
- Linux, security encryption to transfer files between machines (Linux)
- Effective Java - lazy initialization (Programming)
- MySQL management partition table (Database)
- The free command in Linux (Linux)
- OpenGL Superb Learning Notes - New Patterns (Programming)
- How to compile and install wxWidgets in Ubuntu / Debian / Linux Mint (Linux)
- Can not empty the Recycle Bin to repair problems in Ubuntu 14.04 (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.