Ubuntu
-
Git push Error error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400 git push를 하는데 갑자기 에러가 났다$ git push origin mainEnumerating objects: 73, done.Counting objects: 100% (73/73), done.Delta compression using up to 10 threads.Compressing objects: 100% (50/50), done.error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400fatal: The remote end hung up unexpectedly..
error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400Git push Error error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400 git push를 하는데 갑자기 에러가 났다$ git push origin mainEnumerating objects: 73, done.Counting objects: 100% (73/73), done.Delta compression using up to 10 threads.Compressing objects: 100% (50/50), done.error: RPC failed; HTTP 400 curl 56 The requested URL returned error: 400fatal: The remote end hung up unexpectedly..
2024.11.11 -
Status: display_server_not_supported (Anydesk display server not supported Ubuntu 22) 우분투에서 Anydesk 이용할때 display 문제로 에러나고 안되는 경우가 있습니다.Ubuntu 22에서 Anydesk의 "display_server_not_supported" 오류를 해결하는 방법을 알려드리겠습니다. 이 문제는 주로 Wayland 디스플레이 서버를 사용할 때 발생합니다. 해결 방법은 다음과 같습니다: 방법 1. Wayland 비활성화하기: Wayland를 완전히 비활성화하려면 다음 단계를 따르세요:터미널을 엽니다.다음 명령어로 설정 파일을 엽니다:sudo vim /etc/gdm3/custom.conf WaylandEnable=fal..
Status: display_server_not_supported (Anydesk display server not supported Ubuntu 22)Status: display_server_not_supported (Anydesk display server not supported Ubuntu 22) 우분투에서 Anydesk 이용할때 display 문제로 에러나고 안되는 경우가 있습니다.Ubuntu 22에서 Anydesk의 "display_server_not_supported" 오류를 해결하는 방법을 알려드리겠습니다. 이 문제는 주로 Wayland 디스플레이 서버를 사용할 때 발생합니다. 해결 방법은 다음과 같습니다: 방법 1. Wayland 비활성화하기: Wayland를 완전히 비활성화하려면 다음 단계를 따르세요:터미널을 엽니다.다음 명령어로 설정 파일을 엽니다:sudo vim /etc/gdm3/custom.conf WaylandEnable=fal..
2024.09.30 -
E: Sub-process /usr/bin/dpkg returned an error code (1)오류의 주요 원인과 해결 방법을 다루어 보겠습니다. 1. 잠긴 dpkg 상태dpkg 또는 apt가 이미 실행 중인 경우 발생할 수 있습니다.해결 방법: 다른 패키지 관리 프로세스가 실행 중인지 확인하고, 문제가 없다면 잠금 파일을 삭제합니다.sudo rm /var/lib/dpkg/lock-frontend /var/lib/dpkg/locksudo rm /var/cache/apt/archives/locksudo dpkg --configure -asudo apt-get install -f 대부분 위에서 해결됩니다. 참고다른 블로그에서 sudo rm /var/lib/dpkg/info/* 를 많이 쓰는데 이 ..
E: Sub-process /usr/bin/dpkg returned an error code (1)E: Sub-process /usr/bin/dpkg returned an error code (1)오류의 주요 원인과 해결 방법을 다루어 보겠습니다. 1. 잠긴 dpkg 상태dpkg 또는 apt가 이미 실행 중인 경우 발생할 수 있습니다.해결 방법: 다른 패키지 관리 프로세스가 실행 중인지 확인하고, 문제가 없다면 잠금 파일을 삭제합니다.sudo rm /var/lib/dpkg/lock-frontend /var/lib/dpkg/locksudo rm /var/cache/apt/archives/locksudo dpkg --configure -asudo apt-get install -f 대부분 위에서 해결됩니다. 참고다른 블로그에서 sudo rm /var/lib/dpkg/info/* 를 많이 쓰는데 이 ..
2024.08.09 -
The TCP/IP connection to the host 192.168.10.152, port 1433 has failed. Error: "null. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.". 우분투에서 DBeaver등 SQL 클라이언트로 MSSQL 서버에 접속 하려고 할때 MSSQL 서버에 연결할 수 없다는 것을 의미합니다. - 우분투에서의 기준입니다...
The TCP/IP connection to the host 192.168.10.152, port 1433 has failed. Error: "null. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connecThe TCP/IP connection to the host 192.168.10.152, port 1433 has failed. Error: "null. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.". 우분투에서 DBeaver등 SQL 클라이언트로 MSSQL 서버에 접속 하려고 할때 MSSQL 서버에 연결할 수 없다는 것을 의미합니다. - 우분투에서의 기준입니다...
2024.07.26 -
우분투에서 외부 MSSQL 서버에 접속하기 위해 필요한 과정은 다음과 같습니다. 이 과정에서는 sqlcmd 도구를 사용하여 MSSQL 서버에 접속합니다. 1. MSSQL 도구 설치먼저, MSSQL 커맨드 라인 도구(sqlcmd)를 설치합니다.1.1. Microsoft 패키지 저장소 등록curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -sudo add-apt-repository "$(curl -sSL https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list)" 1.2. 패키지 목록 업데이트 및 도구 설치sudo apt-get updatesu..
우분투에서 외부 mssql 서버 접속하기우분투에서 외부 MSSQL 서버에 접속하기 위해 필요한 과정은 다음과 같습니다. 이 과정에서는 sqlcmd 도구를 사용하여 MSSQL 서버에 접속합니다. 1. MSSQL 도구 설치먼저, MSSQL 커맨드 라인 도구(sqlcmd)를 설치합니다.1.1. Microsoft 패키지 저장소 등록curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -sudo add-apt-repository "$(curl -sSL https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list)" 1.2. 패키지 목록 업데이트 및 도구 설치sudo apt-get updatesu..
2024.07.26 -
우분투에서 MySQL을 재설치하는 과정은 비교적 간단합니다. 아래 단계에 따라 진행하시면 됩니다. 1. MySQL 제거먼저, 기존에 설치된 MySQL을 제거해야 합니다.sudo systemctl stop mysqlsudo apt-get remove --purge mysql-server mysql-client mysql-commonsudo apt-get autoremovesudo apt-get autoclean 2. MySQL 데이터 및 설정 파일 삭제MySQL의 데이터 및 설정 파일을 삭제합니다.sudo rm -rf /etc/mysql /var/lib/mysqlsudo rm -rf /var/log/mysqlsudo rm -rf /var/log/mysql.* 3. MySQL 재설치이제 MySQL을 다시 설..
우분투에서 MySQL을 재설치하는 방법우분투에서 MySQL을 재설치하는 과정은 비교적 간단합니다. 아래 단계에 따라 진행하시면 됩니다. 1. MySQL 제거먼저, 기존에 설치된 MySQL을 제거해야 합니다.sudo systemctl stop mysqlsudo apt-get remove --purge mysql-server mysql-client mysql-commonsudo apt-get autoremovesudo apt-get autoclean 2. MySQL 데이터 및 설정 파일 삭제MySQL의 데이터 및 설정 파일을 삭제합니다.sudo rm -rf /etc/mysql /var/lib/mysqlsudo rm -rf /var/log/mysqlsudo rm -rf /var/log/mysql.* 3. MySQL 재설치이제 MySQL을 다시 설..
2024.07.25 -
이 오류는 설치하려는 패키지가 의존하는 다른 패키지가 설치되어 있지 않거나 손상되어 있기 때문에 발생할 수 있습니다. 이 문제를 해결하기 위해 다음 단계를 수행할 수 있습니다. 터미널에서 다음 명령어를 실행하여 의존성 문제를 해결합니다. sudo apt --fix-broken install 이 명령어를 실행하면 시스템에서 문제가 있는 패키지를 자동으로 감지하고 해당 패키지를 업데이트하거나 삭제하여 의존성 문제를 해결합니다. 명령어 실행이 완료되면 패키지를 다시 설치하려고 시도합니다. 다시 설치해야 할 패키지를 지정하거나 다른 패키지를 설치하려는 경우 이전에 발생한 오류가 없어야합니다. 위의 단계를 수행하여 의존성 문제를 해결할 수 있습니다.
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).이 오류는 설치하려는 패키지가 의존하는 다른 패키지가 설치되어 있지 않거나 손상되어 있기 때문에 발생할 수 있습니다. 이 문제를 해결하기 위해 다음 단계를 수행할 수 있습니다. 터미널에서 다음 명령어를 실행하여 의존성 문제를 해결합니다. sudo apt --fix-broken install 이 명령어를 실행하면 시스템에서 문제가 있는 패키지를 자동으로 감지하고 해당 패키지를 업데이트하거나 삭제하여 의존성 문제를 해결합니다. 명령어 실행이 완료되면 패키지를 다시 설치하려고 시도합니다. 다시 설치해야 할 패키지를 지정하거나 다른 패키지를 설치하려는 경우 이전에 발생한 오류가 없어야합니다. 위의 단계를 수행하여 의존성 문제를 해결할 수 있습니다.
2023.02.24 -
해결방법 vi /etc/network/interfaces dns-nameservers 8.8.8.8 8.8.4.4 를 추가. esc + :wq!로 저장 후 닫기 vi /etc/resolv.conf nameserver 8.8.8.8 nameserver 8.8.4.4 를 추가 위 .conf 파일이 편집이 안된다면 아래 참고 rm /etc/resolv.conf ;# to remove the symlink vi /etc/resolv.conf ;# to create a regular file
Failed to connect to https://changelogs.ubuntu.com/meta-release-lts. Check your Internet connection or proxy settings해결방법 vi /etc/network/interfaces dns-nameservers 8.8.8.8 8.8.4.4 를 추가. esc + :wq!로 저장 후 닫기 vi /etc/resolv.conf nameserver 8.8.8.8 nameserver 8.8.4.4 를 추가 위 .conf 파일이 편집이 안된다면 아래 참고 rm /etc/resolv.conf ;# to remove the symlink vi /etc/resolv.conf ;# to create a regular file
2023.02.24