에러모음 9

Ubuntu 설치 후 화면 멈춤현상, 프리즈 현상

우분투 20.04 설치 후 재부팅하는데 기존과 다르게 로드되지 않는 현상이 발생했다.그래픽 카드가 설치된 상태로 설치후 재부팅시 그래픽 드라이버 인식 오류로 인해 이런현상이 발생한다고 한다.그래픽카드가 꼬였다고 한다.Recovery mode로 부팅 (GRUB 화면/부팅 로고 화면이 보일 때, ESC나 shift를 누른다.)-> BIOS 진입할 때처럼 연타해버리면 화면이 지나가니까 타이밍 맞춰 1번만 눌러야 한다.선택지가 뜨는데 root를 선택 (터미널로 연결됨)sudo apt update / sudo apt upgrade / sudo apt autoremove 실행sudo ubuntu-drivers devices 실행-> 추천 NVIDIA driver 버전 확인sudo apt install nvidia-..

에러모음 2025.04.17

remote: Support for password authentication was removed on August 13, 2021.remote: Please see https://docs.github.com/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of

비밀번호를 통한 인증은 이제 git에서 안된다고 한다.github ㅡ> Settings ㅡ> developer settings ㅡ> Personal access tokens ㅡ> Generate new token ㅡ> 권한 설정 후 토큰생성 ㅡ> 절대나가지말고 토큰 기록(1번밖에 못봄)그 이후 원래 과정으로 돌아가서 git push 이후 나오는 id, pw입력창에서 id는 그대로 적으면 되고 pw에 토큰을 넣어주면 된다.

에러모음 2024.12.30

윈도우 파워쉘에서 venv실행안됨

원인 - 가상화 실행 명령은 스크립트를 실행해야하는데 PowerShell에서 이를 제한함해결책 1. windows PowerShell을 관리자 권한으로 실행2.Get-ExecutionPolicy로 현재의 실행정책확인3.RemoteSigned가 아니면 Set-ExecutionPOlicy명령으로 RemoteSigned로 변경https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.4

에러모음 2024.08.01