Skip to content

Instantly share code, notes, and snippets.

@daemin-hwang
Last active March 27, 2018 12:17
Show Gist options
  • Save daemin-hwang/d9ed47ace97ec25aa05a97ac25b67f60 to your computer and use it in GitHub Desktop.
Save daemin-hwang/d9ed47ace97ec25aa05a97ac25b67f60 to your computer and use it in GitHub Desktop.
우분투 16.04.1 초기 셋팅 관련 정리
#!/bin/bash
sudo apt update
apt install git zsh unity-tweak-tool vim shutter mysql-workbench
## oh my zsh 설치
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
chsh -s /bin/zsh
## 찰스설치
wget -q -O - https://www.charlesproxy.com/packages/apt/PublicKey | sudo apt-key add -
sudo sh -c 'echo deb https://www.charlesproxy.com/packages/apt/ charles-proxy main > /etc/apt/sources.list.d/charles.list'
sudo apt-get update
sudo apt-get install charles-proxy
## 파일브라우져 단축키 지정
# 시스템설정 > 키보드 > 바로가기탭 > 실행아이콘 > 내폴더 항목 'Super + E'
# 시스템설정 > 키보드 > 바로가기탭 > 실행아이콘 > 허드를 표시할 키 '사용안함'
## Shutter 단축키 지정
# 시스템설정 > 키보드 > 바로가기탭 > 사용자설정 바로가기 > 'shutter -s -c' / Shift + Print
## 상단 window 메뉴 분리 조절
# 시스템설정 > 모양 > 동작방식탭 > '창 제목표시줄에 보이기' + '항상표시함'
## 추가드라이버 설치
# 시스템 설정 > 소프트웨어&업데이트 > 추가드라이버 탭 클릭 (nvidia 367.57 / intel-microcode)
## 크롬설치
## grub 부팅로깅 설정 변경 업데이트
# sudo vi /etc/default/grub
# `주석처리` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
# sudo update-grub
## nimf 설치
# im-config -n nimf
## altwin key 변경
# sudo vi /usr/share/X11/xkb/symbols/altwin
# symbols[Group1] = [ Hangul ]
## 프린터 설정
# 10.64.91.51 : 9100
# Generic-PCL-6-PCL-XL-LF / N501 SINDOH
## 터치패드 손바닥 민감도 조절
# sudo vi /etc/modprobe.d/blacklist.conf
# blacklist i2c_designware-platform
## openconnect auto build 설치
# https://gist.github.com/darrenpmeyer/b0b964e02f815be75698
## 크롬 화면 깜빡임 현상 문제
# http://askubuntu.com/questions/766725/annoying-flickering-in-16-04-lts-chrome
## shutodnw 종료시 딜레이현상
# https://ubuntu-mate.community/t/help-with-slow-boot-and-shutdown-of-16-04/5622/2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment