많은 글들이 있지만 뭔가 대부분 잘 안됐다.
이번 기회에 정리한다.
0. 먼저 Termux와 Remote Desktop Manager를 설치한다.
Remote Desktop Manager 대신 아래도 나쁘지 않다.
화면이 작지만 마우스 스크롤이나 ctrl+alt 화살표로 다른 화면으로 이동할 수 있어서 간편하다.
https://f-droid.org/en/packages/com.gaurav.avnc/index.html
1. Termux로 Ubuntu 20 설치
pkg install wget curl proot tar -y && wget https://raw.githubusercontent.com/tuanpham-dev/termux-ubuntu/master/ubuntu.sh && chmod +x ubuntu.sh && bash ubuntu.sh
아래 명령 실행하면 우분투 실행 후 자동 로그인 됨
$ ./start-ubuntu20.sh
2. 우분투 내 VNC Server 실행
$ ./vncserver-start
실행 한 뒤에 적당히 해상도(FHD 등)를 설정해 준다. 기본적으로 127.0.0.1:5901 포트에 열림.
3. Remote Desktop Manager 실행해서 접속
New -> General -> VNC -> host랑 port 를 각각 127.0.0.1, 5901로 지정
Settings -> Logon 에 패스워드 지정하면 매번 안쳐도 된다.
3. Chrome설치
미리 크롬이 설치되어있는데 구글 계정 로그인 하려고 하면 문제가 있다면서 에러가 나는 경우가 있다.
sudo apt remove chromium
sudo apt install chromium
4. vscode 로컬 설치
대부분 vscode server를 설치하고 웹으로 연결하는 방법을 소개하는데
써보니 웹 IDE는 느리기도 하고 느낌이 별로다.
크롬을 열어서
https://update.code.visualstudio.com/1.50.1/linux-deb-arm64/stable
이걸 다운 받는다.
설치는 아래 명령으로 가능하다.
$ dpkg -i 다운받은파일.deb
libsecret 관련 에러가 나면서 설치되지 않는다면, autoremove 한번 해주고
$ sudo apt-get install libsecret-1-0
이제 vscode를 열고 해피 코딩을 즐겨보자
code . 또는 Ubuntu 화면 왼쪽 상단에서
Applications -> Development -> Visual Studio Code를 눌러서 실행하면 된다.
5. 화면을 좀 더 이쁘게
Prof-XFCE-theme is the best for me. You can download it here: https://www.gnome-look.org/p/1334420/
Vimix icon is nice. You can download it here: https://www.gnome-look.org/p/1273372/
After download *.tar.xz files you can extract them and copy to themes/icons folders:
mkdir -p ~/.local/share/icons ~/.local/share/themes
cd ~/Downloads
tar -xf "Prof--XFCE- 2.1.tar.gz"
mv "Prof--XFCE- 2.1" ~/.local/share/themes/
tar -xf Vimix.tar.xz
mv Vimix ~/.local/share/icons/
바탕화면 마우스 우클릭 -> Applications -> Settings -> Appearance 눌러서 적용 하면 됨.
6. 기본 프로그램 설치
$ sudo apt install net-tools
$ sudo apt install nautilus
사진미리보기 :
nautilus 실행 -> 우측상단 점 세개 -> Preferences -> Search & Preview
-> Thumbnails -> All Files
7. 한글 깨짐 현상 (입력 안됨 -> 수정 필요)
sudo apt-get install fonts-unfonts-core fonts-unfonts-extra
apt-cache search korean font
Browser open -> Settings ->
add languages 검색해서 korean 추가하면 이제 크롬에서는 보임.
우분투에서도 한글 잘 보이게 하려면
$ sudo apt install fonts-nanum fonts-nanum-extra fonts-nanum-coding ibus-hangul
$ ibus-setup
input-method 에서 한글 추가하고 영어 키보드는 빼버림
$ ibus-daemon -drx
$ ibus-setup-hangul
참고:
https://github.com/tuanpham-dev/termux-ubuntu
7. 기타 작업
아래쪽에 패널이 있으니 DEX를 쓰고 있다면 안드로이드 기본 패널과 겹쳐서 거슬리게 된다.
패널 우클릭 -> Panel -> Panel Preference -> General -> Mode -> Vertical
이후 Lock 풀고 우측 중간으로 옮긴 후 다시 Lock 을 걸면 오케이
Very nice!! Thanks for your useful content.
답글삭제Thank you :)
삭제