Skip to content

Latest commit

 

History

History
87 lines (72 loc) · 2.08 KB

ubuntu.md

File metadata and controls

87 lines (72 loc) · 2.08 KB

GPU monitoring

nvidia-smi -l 1

하드디스크 인식확인

fdisk -l

파티션 추가

fdisk /dev/sdb

포맷

mkfs.타입 /dev/sdb1

UUID 확인

blkid

fstab 수정

vi /etc/fstab
UUID=7514F3C548DC857A   /mnt/data1      ntfs    defaults,locale=ko_KR.UTF-8     0       0
#/dev/disk/by-uuid/6ce0f131-e804-4ad8-a3eb-5b8ec9ec23e9 /home/user/rs_postdoc auto nosuid,nodev,nofail,x-gvfs-show 0 0
#/dev/disk/by-uuid/424a215a-82a9-46fd-a8ff-f7f331b2d02e /home/user/rs_phd auto nosuid,nodev,nofail,x-gvfs-show 0 0

마운트

mount -a

ubuntu 런처 위치 변경

  • 런처를 왼쪽에 위치함
gsettings set com.canonical.Unity.Launcher launcher-position Left 
  • 런처를 아래쪽에 위치함
gsettings set com.canonical.Unity.Launcher launcher-position Bottom

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? 에러

sudo sed -i 's/kr.archive.ubuntu.com/ftp.daum.net/g' /etc/apt/sources.list

ubuntu에서 삼바 클라이언트 세팅

0. 참고싸이트

1. cifs-utils 설치

$ sudo apt install -y cifs-utils

2. mount 명령어로 삼바하드 세팅

  • $ sudo mount -t cifs //삼바서버IP/경로 내PC의마운트경로 -o user=유저ID,password=유저비밀번호,uid=1000,gid=1000

3. 부팅하더라도 mount 되어있게 세팅

1) /etc/fstab 수정하여 다음 라인 추가

  • //삼바서버IP/경로 내PC의마운트경로 cifs user=유저ID,password=유저비밀번호,uid=1000,gid=1000 0 0
$ sudo gedit /etc/fstab

2) 수정된 /etc/fstab 적용

$ sudo mount -a

우분투(Ubuntu) 16.04 한글 키보드 설치