2016년 11월 14일 월요일

Linux 시간 설정 (rdate, date, hwclock )

1. 하드웨어 시간 확인
 #> hwclock -r

2. 소프트웨어 시간 확인
$, #> date

3. 자동 설정
#> rdate -s time.bora.net

4.수동 설정
#> date -s "2016-11-15 09:40:05"

5.하드웨어 시간 설정
#> hwclock --localtime --systohc


권한 설명
---------------------------
# 루트 권한만 가능
$ 일반 유저도 가능

2016년 11월 9일 수요일

linux파일 ip_address에서 select distinct(ip_address) from table명 효과내기

[codehexa@codehexa logs]$ cat ip_address | sort | uniq
192.168.11.103
192.168.11.5
192.168.12.12
192.168.12.14
192.168.12.16
192.168.12.23
192.168.12.7
192.168.15.10
192.168.16.16
192.168.16.17
192.168.16.250
192.168.16.8
192.168.3.107
192.168.3.109
192.168.3.13
192.168.3.141
192.168.3.145
192.168.3.177
192.168.3.20
192.168.3.21
192.168.3.28
192.168.3.30
192.168.3.50
192.168.3.6
192.168.6.120
192.168.6.121
192.168.6.122
192.168.6.124
192.168.6.126
192.168.6.127
192.168.6.128
192.168.6.130
192.168.6.131
192.168.6.135

리눅스 문자와숫자 조합의 파일이름 정렬( Sort alphanumeric filenames in Linux )

아래 처럼 문자와 숫자가 섞여 있는 파일에 대해서 정렬이 제대로 되지 않을 때 When sorting is not done properly for files with mixed letters and numbers as shown below [codeh...