계정 내의 실행된 명령어 이력 확인 : history 명령어 수행 이력 format 적용 확인: echo $HISTTIMEFORMAT 접속세션(ssh client 예:putty) 명령어 수행 이력 format 적용: export HISTTIMEFORMAT="%Y-%m-%d_%H:%M:%s [CMD] : " - Profile에 설정하기 시스템 profile(전체): /etc/profile 마지막 줄에 export HISTTIMEFORMAT="%Y-%m-%d_%H:%M:%s [CMD] : " (/etc/bashrc 에 적용해도 무관)
usage: locale[-a|-m] or: locale [-cCk] name... 사용중인 로컬 확인: echo $LANG 또는 locale 설정 가능한 로케일 조회: locale -a 접속세션(ssh client 예:putty) 언어 설정 적용: export LANG="ko_KR.UTF-8" 또는 export LANG="ko_KR.eucKR" - Profile에 설정하기 시스템 profile(전체): /etc/profile 마지막 줄에 export LANG="ko_KR.UTF-8" 또는 export LANG="ko_KR.eucKR" (/etc/bashrc 에 적용해도 무관) 사용자별 profile : ~/.bash_profile 마지막 줄에 export LANG="ko_KR.UTF-8" 또는 expo..
Usage: chage [options] LOGIN Options: -d, --lastday LAST_DAY set date of last password change to LAST_DAY -E, --expiredate EXPIRE_DATE set account expiration date to EXPIRE_DATE -h, --help display this help message and exit -I, --inactive INACTIVE set password inactive after expiration to INACTIVE -l, --list show account aging information -m, --mindays MIN_DAYS set minimum number of days before ..
----------------------------------------------------------------------------------------------------------------------------------- - Java 소스 import com.jcraft.jsch.Channel; import com.jcraft.jsch.ChannelSftp; import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; ... ... private Session session = null; private Channel channel = null; private ChannelSftp channelSftp = null; ... ... // SFTP..
----------------------------------------------------------------------------------------------------------------------------------- - Java 소스 import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.io.PrintWriter; import org.apache.commons.net.PrintCommandListener; import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org...
----------------------------------------------------------------------------------------------------------------------------------- - bcrypt는 패스워드 저장을 목적으로 설계된 암호화 Open Source이다. (단방향 암호화) - Niels Provos와 David Mazières가 1999년 발표했고, 현재까지 사용되는 가장 강력한 해시 메커니즘 중 하나이다. - bcrypt는 OpenBSD에서 기본 암호 인증 메커니즘으로 사용되고 있다. - 미래에 PBKDF2보다 더 경쟁력이 있다고 여겨진다. - bcrypt에서 “work factor” 인자는 하나의 해시 다이제스트를 생성하는 데 얼마만큼의..
Usage: docker image build [OPTIONS] PATH | URL | - Build an image from a Dockerfile Options: --add-host list Add a custom host-to-IP mapping (host:ip) --build-arg list Set build-time variables --cache-from strings Images to consider as cache sources --cgroup-parent string Optional parent cgroup for the container --compress Compress the build context using gzip --cpu-period int Limit the CPU CFS ..