wsl
-
wsl: USB 장치 연결하기 (Connect usb devices to wsl)컴퓨터 2022. 7. 16. 15:40
WSL에서 USB 장치를 연결하는 방법 1. usbipd 설치 호스트 OS, 윈도우에서 설치한다. Releases · dorssel/usbipd-win Windows software for sharing locally connected USB devices to other machines, including Hyper-V guests and WSL 2. - dorssel/usbipd-win github.com 2. WSL 에서 usbip 설치 WSL 콘솔에서 입력한다. sudo apt install linux-tools-virtual hwdata sudo update-alternatives --install /usr/local/bin/usbip usbip `ls /usr/lib/linux-tools/*/..
-
wsl에서 OneDrive 폴더 연결컴퓨터 2022. 4. 25. 11:16
ln -s /mnt/c/Users/me/OneDrive/ here cd here 후 폴더 내용물 확인 하드 링크이므로 클라우드에서 파일이 변경되면 자동으로 같이 변경됨 로컬에서 폴더 업로드 (-r 옵션) scp -r -i "mypem.pem" [업로드할 로컬 폴더] [ec2-user계정명]@[ec2 instance의 public DNS]:~/[경로] EC2에서 폴더 다운로드 scp -r -i "mypem.pem" [ec2-user계정명]@[ec2 instance의 public DNS]:~/[경로] [다운로드 받을 로컬 폴더 경로]
-
Rust: Cross compile to linux on windows컴퓨터/Rust 2021. 8. 30. 13:00
Rust Rust Programming Language A language empowering everyone to build reliable and efficient software. www.rust-lang.org Rust 크로스 컴파일 윈도우 10에서 AWS EC2에서 사용할 바이너리를 빌드할 것이다. (x86_64-unknown-linux) 1. 타겟 추가 rustup target add x86_64-unknown-linux 2. WSL 2 실행 bash 3. cargo config 프로젝트에서 bash를 해서 build 하면 권한 문제가 발생할 수 있다. 프로젝트 최상위에 .cargo 폴더를 만들고 config 파일을 만들어서 아래처럼 수정한다. (.cargo/config) (env를 .bash..