http://youngmoon.tistory.com/205
'Xubuntu' 카테고리의 다른 글
xubuntu network 설정 (dhcp, static) (0) | 2017.12.18 |
---|---|
windows 개행문자 변환 (0) | 2017.12.12 |
일반사용자에게 특정 명령어에 대해서만 PW 묻지 않기 (0) | 2017.11.08 |
xubuntu 설치 (0) | 2017.09.12 |
http://youngmoon.tistory.com/205
xubuntu network 설정 (dhcp, static) (0) | 2017.12.18 |
---|---|
windows 개행문자 변환 (0) | 2017.12.12 |
일반사용자에게 특정 명령어에 대해서만 PW 묻지 않기 (0) | 2017.11.08 |
xubuntu 설치 (0) | 2017.09.12 |
windows에서 빌드되거나 생성된 쉘 파일을 리눅스에서 쓰기 위해서 아래와 같이 변환해주면 됩니다.
This is very easy to fix using basic text manipulation tools. Any of the command below will fix your file:
sed:
sed -i 's/\r//' file.sh
perl
perl -i -pe 's/\r//' file.sh
tr
tr -d $'\r' < file > newfile && mv newfile file
xubuntu network 설정 (dhcp, static) (0) | 2017.12.18 |
---|---|
windows 개행문자 변환 (0) | 2017.12.12 |
일반사용자에게 특정 명령어에 대해서만 PW 묻지 않기 (0) | 2017.11.08 |
xubuntu 설치 (0) | 2017.09.12 |
1. nano /etc/sudoers
2. [일반사용자계정명] ALL=NOPASSWD:/sbin/hwclock, /bin/date
위는 sudo hwclock -w 나 sudo date --set 같은 명령어 대해 비밀번호를 묻지 않는 것입니다.
xubuntu network 설정 (dhcp, static) (0) | 2017.12.18 |
---|---|
windows 개행문자 변환 (0) | 2017.12.12 |
일반사용자에게 특정 명령어에 대해서만 PW 묻지 않기 (0) | 2017.11.08 |
xubuntu 설치 (0) | 2017.09.12 |
1. 다운로드 페이지
http://cdimage.ubuntu.com/xubuntu/releases/16.04/release/
2. 설치순서
xubuntu network 설정 (dhcp, static) (0) | 2017.12.18 |
---|---|
windows 개행문자 변환 (0) | 2017.12.12 |
일반사용자에게 특정 명령어에 대해서만 PW 묻지 않기 (0) | 2017.11.08 |
xubuntu 설치 (0) | 2017.09.12 |