본문 바로가기

728x90

linux

(6)
xxd - make a hexdump or do the reverse. xxd 는 주어진 파일 또는 표준 입력의 16진수 덤프를 만듭니다. 또한 16진수 덤프를 원래 2진수 형식으로 다시 변환할 수 있습니다. xxd -h[elp] xxd [options] [infile [outfile]] xxd -r[evert] [options] [infile [outfile]] $ echo "abcdef" | xxd 00000000: 6162 6364 6566 0a abcdef. $ echo "abcdef" | xxd -g1 00000000: 61 62 63 64 65 66 0a abcdef. $ echo "abcdef" | xxd -b 00000000: 01100001 01100010 01100011 01100100 01100101 01100110 abcdef 00000006: 0000..
RPM PBone 검색엔진, Debian, Ubuntu 패키지 검색. Redhat, CentOS, Fedora, Scientific, SuSE, Mandriva, StartCom 리눅스 패키지를 위한 검색. RPM Search Please enter searched expression rpm.pbone.net Debian Packages 검색. Debian -- Debian Packages Search Debian Packages Search This site provides you with information about all the packages available in the Debian Package archive. Please contact Debian Webmaster if you encounter any problems! Browse through the l..
Debian, Ubuntu, RedHat Linux(CentOS, Fedora) 배포판 확인방법 리눅스는 일반적으로 아래 명령으로 배포판 확인이 가능하다. $ cat /etc/issue* 또는 $ cat /etc/*-release Debian, Ubuntu $ lsb_release -a RedHat Linux $ rpm -qa *-release
Debian date NTP 시간 동기화 NTP 서버 주소를 변경하고 서비스를 재시작한다. $ date 서버시간과 날짜가 다르면 아래의 설정을 하면 된다. $ sudo vim /etc/systemd/timesyncd.conf [Time] NTP=동기화 서버 주소 $ sudo systemctl restart systemd-timesyncd.service
명령어 출력을 파일에 쓰는 기본적으로 일반적인 10가지 방법 Write the output of a command to a file, Basically 10 commonly used ways 출처: Byte Commander Overview: Please note that the n.e. in the syntax column means "not existing". There is a way, but it's too complicated to fit into the column. You can find a helpful link in the List section about it. List: command > output.txt The standard output stream will be redirected to the file only, it will not b..
Debian, Ubuntu, RedHat Linux(CentOS, Fedora) 한글 Locale 설치 Debian, Ubuntu $ sudo dpkg-reconfigure locales 패키지 설정 화면이 나오면 방향키(PageUp, PageDown)로 상하로 이동하여 ko_KR.UTF-8을 찾아 스페이스키를 눌러 선택한 후 탭키로 이동하여 을 누른다. RedHat Linux(CentOS, Fedora) $ localedef -v -c -i ko_KR -f UTF-8 ko_KR.UTF-8

반응형