- Today
- Total
목록정리 (106)
작심삼일
에러vscode로 디스크에 저장되어있는 이미지를 보려고하는데 다음과 같은 에러가 나면서 모든 이미지가 까만색으로만 보였다.vscode Error loading webview: Error: Could not register service worker: InvalidStateError: Failed to register a ServiceWorker: The document is in an invalid state.. 해결 방안vscode를 껐다가 켜면 된다.간-단
에러cuda를 설치하는데 아래와 같은 에러가 나왔다.ooooo@ooooo:~$ sudo apt-get -y install cudaReading package lists... DoneBuilding dependency tree... DoneReading state information... DoneSome packages could not be installed. This may mean that you haverequested an impossible situation or if you are using the unstabledistribution that some required packages have not yet been createdor been moved out of Incoming.The f..
에러vscode로 ssh로 접속한 파일을 저장하려할 때, 권한이 없다고 다음과 같은 에러를 만났다.Failed to save : Unable to write file 'vscode-remote://ssh-remote' (NoPermissions (FileSystemError): Error: EACCES: permission denied, open) 해결 방안내가 사용하고있는 USER한테 모든 파일을 수정할 수 있는 권한을 주면 된다.이때 USER는 terminal에 들어갔을 때 나오는 이름이라고 생각하면 된다.sudo chown -R $USER*
에러vscode에서 ssh로 붙은 서버 내의 docker container들이 이런 에러메세지를 보이면서 보이지 않았다.permission error when installing ttf-mscorefonts-installer/Can't drop privileges as file couldn't be accessed by user '_apt' 해결 방법docker를 처음 설치하면 sudo로만 실행할 수 있다.이 권한을 일반 사용자에게도 풀어주면 된다.sudo groupadd dockersudo usermod -aG docker $USERnewgrp docker 이렇게 설정해둔 뒤, docker ps 등으로 확인해보면 제대로 적용이 됐는지 간단히 확인 가능하다.그럼 문제가 해결됐을 것이다.docker ps
에러docker run으로 도커를 띄울 때 이 에러가 뜨면서 도커에서 gpu를 잡지 못했다.Error response from daemon: could not select device driver "" with capabilities: [[gpu]] 해결 방법nvidia-container-toolkit을 설치하고, 도커를 재시작하면 된다.$ distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \ && curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - \ && curl -s -L https://nvidia.github.io/nvidia-docker/$distribut..
원하는 것 vscode를 쓰면 다 좋은데 terminal창과 editor 창을 마우스 커서로 왔다갔다 하기 너무 귀찮다. 그래서 난 "ctrl + ;"로 keyboard shortcut을 만들어서 사용한다. 방법 ctrl + shift + P 를 누른 후 Open Keyboard Shorcuts (JSON)를 연다. 빈 json파일에 아래 코드를 적어서 저장한다. // Place your key bindings in this file to override the defaultsauto[] [ { "key": "ctrl+;", "command": "terminal.focus", "when": "editorFocus" }, { "key": "ctrl+;", "command": "workbench.action..
목표 Ubuntu가 설치된 PC를 booting USB를 이용해 다시 windows로 바꾸기! 원래는 PC 부팅 시 ESC나 F11을 연타하면 booting menu로 가는데 Ubuntu에는 없었다; 아래처럼 하면 booting menu를 뜨게할 수 있음 해결 방법 1. grub 파일에 들어간다 nano /etc/default/grub 2-1. 아래 코드를 GRUB_TIMEOUT_STYLE=hidden 2-2.로 바꾼다. GRUB_TIMEOUT_STYLE=menu 3. grub을 다시 세팅한다. sudo update-grub 4. 그러고 다시 재부팅하면 성공!