Engineer/Linux
-
[bash] cutEngineer/Linux 2021. 3. 4. 21:44
리눅스 커멘드 cut 을 이용해 문자열을 자르거나 특정 위치의 문자만을 추출해 낼 수 있습니다. 예를 들어 아래와 같이 문자열의 두번째 문자만을 추출할 수도 있습니다. $!/bin/bash data="abcde" echo $data | cut -c 2 결과 더보기 b 또는 문자열들을 저장하고 있는 파일로 부터 문자를 추출할 수도 있습니다. File: data.txt abcd abcd efgh -- #!/bin/bash cut -c 2,7 data.txt 결과값 더보기 b bf 쉘에서 문자열을 변경하고나 특정 문자 / 문자열을 추출할 때 유용할 듯 하네요. www.geeksforgeeks.org/cut-command-linux-examples/ cut command in Linux with examples..
-
X11 forwarding in windowsEngineer/Linux 2019. 8. 7. 14:36
1. Download Xming application on window 2. Change the ssh configuration on linux(or target computer) $> sudo vi /etc/ssh/ssh_config X11Forwarding yes $> sudo service sshd restart 3. run putty and enable X11 forwarding [TroubleShooting1] qt.qpa.xcb: X server does not support XInput 2 failed to get the current screen resources QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ro..
-
MAC에서 우분투 부팅 USB 만들기Engineer/Linux 2019. 1. 19. 11:36
안녕하세요.MAC에서 우분투 부팅 이미지 USB를 만드는 과정을 정리해 보았습니다.1. 우분투 이미지 다운로드 하기(LTS 버전을 추천합니다.)https://www.ubuntu.com/download/desktop2. 다운이 완료된 iso 파일을 img로 변환합니다.MacBookPro:Downloads $ hdiutil convert -format UDRW -o ubuntu-18.04.1-desktop-amd64.img ubuntu-18.04.1-desktop-amd64.iso Driver Descriptor Map(DDM : 0) 읽는 중...Ubuntu 18.04.1 LTS amd64 (Apple_ISO : 1) 읽는 중...Apple(Apple_partition_map : 2) 읽는 중...Ubun..