shell의 종류

사용중인 Shell $> echo $SHELL /usr/bin/zsh Shell 종류 $> /usr/bin/sh # Bourne shell. /usr/bin/ksh93 # Korn shell. /usr/bin/bash # Bash shell. /usr/bin/zsh # Z shell. /usr/bin/csh # C Shell. /usr/bin/tcsh # TC Shell. /usr/bin/fish # Fish Shell. ... Shell 변경 Shell을 변경하는 것은 Shell을 실행 해 주는 것으로 사용 가능합니다. (물론 $PATH에 등록되어 있고 해당 Shell이 설치되어 있는 경우) $> bash $> zsh 기본 Shell을 변경하고 싶을 경우에는 chsh 명령어를 사용하면 됩니다.

Continue reading

Shell에 설정된 alias 대신 원래 명령어를 실행하는 여러가지 방법들. $> alias ls=exa ls alias가 설정되어 있을 경우 ls 명령어를 입력하면 exa 명령어가 실행된다. 이를 alias 설정 이전 ls 명령어로 실행할 수 있는 방법은 다음과 같다. 절대 경로를 이용하는 방법. $> whereis ls ls: /bin/ls /usr/share/man/man1/ls.1.gz $> /bin/ls command 명령을 이용하는 방법. $> command ls “(double quotation)을 이용하는 방법. $> "ls" ‘(single quotation)을 이용하는 방법. $> 'ls' \(backslash)를 이용하는 방법. $> \ls

Continue reading

note

/etc/skel/ 새로운 유저가 생성되면 자동으로 /etc/skel 디렉토리내에 있는 파일들을 새로운 사용자의 홈디렉토리로 복사하는 과정을 거치게 된다. old kernels remove Debian 계열 리눅스. 현재 적용중인 커널 버전 확인. $> uname -r 4.15.0-88-generic 설치되어 있는 커널 확인. $> dpkg --list | grep linux-image $> dpkg --list | grep linux-headers ii linux-image-4.13.0-45-generic 4.13.0-45.50~16.04.1 amd64 Linux kernel image for version 4.13.0 on 64 bit x86 SMP ii linux-image-4.15.0-76-generic 4.15.0-76.86~16.04.1 amd64 Signed kernel image generic ii linux-image-4.

Continue reading

Author's picture

GeekSaga

.

Dreamer

Korea