반응형

나만의 우분투 설정을 만들자! 25

Terminator - double characters

예전에 유투브에서 멀티 터미널에서 동일한 커맨드를 날리는 것을 봤는데 찾아보다 Terminator 를 찾았다 문제는 그룹이나 모든 터미널에 broadcast시 하나의 문자가 다른 터미널에서 두번 입력되는 현상이 있어 아래와 같이 해결책을 찾았다 sudo vim /usr/share/terminator/terminator before change ibus_running = [p for p in psutil.process_iter() if p.name == 'ibus-daemon' and p.username == username] after change ibus_running = [p for p in psutil.process_iter(['name', 'username']) if p.info['name'] =..

Github Cli

우분투에 설치하자 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0 sudo apt-add-repository https://cli.github.com/packages sudo apt update sudo apt install gh 설치 후 로그인 먼저 하고 사용 방식을 https로 할지 ssh 방식으로 할지 선택할 수 있다 gh auth login gh auth status 다양한 명령어로 웹에 접근없이 cli로 사용가능하다. gh repo list - repository list gh repo clone aaa - clone aaa repository // In repository directory gh issu..

TMUX - 설치 및 단축키

TMUX Intro Terminal MUltipleXer 터미널 다중화 장치 터미널 Session 관리와 Window를 Pane으로 다중 분할하여 병렬적 처리에 도움을 준다. Prefix Ctrl + b 모든 tmux 명령어 앞에 해당 Ctrl + b prefix를 붙인다. (tmux 명령어 임을 선언한다) Install $ sudo apt update $ sudo apt install tmux Session tmux를 이루는 가장 큰 단위 여러 윈도우로 구성 명령어 Session # 생성 $ tmux new-session -s ${session name} # Detached d # Attached $ tmux a -t ${session name} a 목록 $ tmux list-sessions $ tmu..

Ubuntu - Java11 설치

https://triest.tistory.com/48 우분투(18.04)에 openjdk 11 설치하기 1. 기존에 오라클 또는 openjdk 구 버전이 설치되어있다면 다 삭제한다. - openjdk-java 시리즈 # sudo apt-get remove openjdk* - oracle-java 시리즈 # sudo apt-get remove oracle* - 완료하고 나면 다음 명령.. triest.tistory.com 1. 기존의 jdk를 모두 삭제한다. $ sudo apt-get remove openjdk* $ sudo apt-get remove oracle* $ sudo apt-get autoremove --purge $ sudo apt-get autoclean 2. openjdk 11 설치 $ s..

Window new terminal에 OH-MY-ZSH 설치하기(3)

https://velog.io/@cyongchoi/Window-Ubuntu-%ED%84%B0%EB%AF%B8%EB%84%90%EC%97%90-OH-MY-ZSH-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B03 Window new terminal에 OH-MY-ZSH 설치하기(3) window new terminal을 사용하여 oh-my-zsh를 설치해서 적용해보자. velog.io 앞에 포스팅에 이어서 기본터미널 우분투로 설정하기 window new terminal 을 설치하였으면 우선 기본 터미널을 우분투로 설정하자. 위에 사진처럼 설정에 들어간 후 defaultProfile을 우분투에 guid와 동일 번호를 입력한다. zsh 및 OH-MY-ZSH 설치하기 Git,ZSH 설치하기 sud..

Virtual Box - 우분투 비디오 재생이 안돼요!

https://askubuntu.com/questions/816780/videos-not-playing Videos not playing I recently installed Ubuntu in a VM on Windows 10 and have the problem that videos just don't want to play. Youtube and other websites don't work. Not even downloading the videos and playing them w... askubuntu.com I recently installed Ubuntu in a VM on Windows 10 and have the problem that videos just don't want to play..

반응형