Linux(2)
-
Ubuntu WIFI 설정
WIFI 국가설정 # vi /etc/defalt/crda REGDOMAIN=KR WIFI 연결 설정 # vi /etc/netplan/[TAB키] network: ethernets: eth0: dhcp4: true optional: true wifis: wlan0: addresses: [192.168.1.113/24] gateway4: 192.168.1.1 nameservers: addresses: [168.126.63.1,168.126.63.2] dhcp4: no optional: true access-points: "Infobee-5G": password: "1234qwer" version: 2 # netplan generate # netplan apply
2021.02.19 -
[LINUX] cp 파일 강제 덮어씌우기
cp의 경우 -f 옵션를 추가를 하여도 계속 덮어 씌울것인가를 질문한다.그럴경우 대처하는 방법은 cp 앞에 \(역슬래시)를 먼저 입력면 된다. \cp -f test1.txt test2.txt
2020.04.06