본문 바로가기

Study_Linux

(3)
Ubuntu에 Airpod 연결법 $ sudo geidt /etc/bluetooth/main.conf Bluetooth 설정 파일을 연 후 51번줄의 주석을 해제한 후 ControllerMode를 bredr로 변경 Airpods 뒷면 버튼을 꾹 눌러 Pairing Mode로 진입 후 Ubuntu의 Bluetooth 설정 창에서 해당 Airpod을 찾아 연결 참고 자료 : https://shanepark.tistory.com/346 Ubuntu) Airpod 연결 설정 하기 우분투 20.04 에어팟 연결 설정 하는 방법 Intro 우분투에 에어팟을 연결 해 보려 하니 일반적인 Bluetooth 장비 메뉴로는 가능하지가 않았습니다. 일단 Unknown 장비들이 무지막지하게 뜨는데 그 중 어 shanepark.tistory.com
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) 해결법 $ sudo apt update && sudo apt upgrade 위 명령어를 통해 Linux의 package lists를 update하려 했으나 아래와 같은 Error 발생 위 Error의 발생 원인은 다음과 같다 Synaptic Package Manager나 Software Update가 열려있는 경우 다른 apt command가 terminal상에서 실행되고 있는 경우 Background에서 다른 apt process가 실행되고 있는 경우 이에 대한 해결책은 다음과 같다 1) 모든 apt process 종료시키기 $ sudo killall apt apt-get 2) 아래와 같이 아무런 process가 발견되지 않을 경우 $ sudo rm /var/lib/apt/lists/lock $ sudo rm..
우분투 'The following security updates require Ubuntu Pro with 'esm-infra' enabled: ' 해결법 - OS : Ubuntu 18.04 $ sudo apt update && sudo apt upgrade Update, Upgrade 시도 시 아래와 같은 경고문구가 뜰 때 해결방안 Ubuntu 홈페이지에 로그인 후 Pro -> Your Subscriptions에서 개인 Token 확인 Token 확인 후 아래의 명령어 입력 $ sudo apt install ubuntu-advantage-tools $ sudo apt update $ sudo ua attach [Token]# 위에서 확인한 개인 토큰 입력 아래의 명령어로 모든 Ubuntu Pro Services 확인 가능 $ pro status --all 비활성화되어있는 Services 활성화 $ sudo pro enable ros $ sudo pro e..