오류는 아니지만 나타나지 않도록 수정한다.


$ sudo vi /etc/default/avahi-daemon


AVAHI_DAEMON_DETECT_LOCAL=1 을

AVAHI_DAEMON_DETECT_LOCAL=0 으로 바꿔준다.



$ sudo vi /usr/lib/avahi/avahi-daemon-check-dns.sh


AVAHI_DAEMON_DETECT_LOCAL=1 을

AVAHI_DAEMON_DETECT_LOCAL=0 으로 바꿔준다.


다음 부팅부터 체크하지 않을 것이다.



' > linux' 카테고리의 다른 글

[Ubuntu] Change GUI  (0) 2017.05.29
[Ubuntu] Set static address  (0) 2017.05.28
[Ubuntu] SSH  (0) 2017.05.28
[Common] Change password  (0) 2017.05.28
[Ubuntu] 저장소를 다음카카오로 변경  (0) 2017.05.28
Posted by 후니아부지
:

[Ubuntu] Change GUI

앎/linux 2017. 5. 29. 00:13 |

Unity... 적응안된다...


Gnome으로 돌아가자.

$ sudo apt-get install gnome-session-flashback


GUI에서 Logout 한다.


다음을 클릭


GNOME Flashback (Metacity)를 클릭한다.

※ Compiz uses a 3D compositor to display the windows.

   Metacity displays the windows in 2D.





' > linux' 카테고리의 다른 글

[Ubuntu] 네트워크 서비스 탐색 비활성화 알림 제거  (0) 2017.05.29
[Ubuntu] Set static address  (0) 2017.05.28
[Ubuntu] SSH  (0) 2017.05.28
[Common] Change password  (0) 2017.05.28
[Ubuntu] 저장소를 다음카카오로 변경  (0) 2017.05.28
Posted by 후니아부지
:

[Ubuntu] Set static address

앎/linux 2017. 5. 28. 23:51 |

이더넷 인터페이스 확인

$ ifconfig

or

$ ip link


수정

$ sudo vi /etc/network/interfaces


auto 인터페이스네임

iface 인터페이스네임 inet static

address xxx.xxx.xxx.xxx

netmask xxx.xxx.xxx.xxx

gateway xxx.xxx.xxx.xxx

dns-nameservers xxx.xxx.xxx.xxx


적용

다음으로 네트워크를 재시작한다.

$ systemctl restart networking.service


안바뀌면.... 리부팅해.... 


' > linux' 카테고리의 다른 글

[Ubuntu] 네트워크 서비스 탐색 비활성화 알림 제거  (0) 2017.05.29
[Ubuntu] Change GUI  (0) 2017.05.29
[Ubuntu] SSH  (0) 2017.05.28
[Common] Change password  (0) 2017.05.28
[Ubuntu] 저장소를 다음카카오로 변경  (0) 2017.05.28
Posted by 후니아부지
:

[Ubuntu] SSH

앎/linux 2017. 5. 28. 23:24 |
  • 설치

$ sudo apt-get install openssh-server


  • 확인


  • 설정

$ sudo vi /etc/ssh/sshd_config


  • 실행

리스타트

$ sudo service ssh restart




' > linux' 카테고리의 다른 글

[Ubuntu] Change GUI  (0) 2017.05.29
[Ubuntu] Set static address  (0) 2017.05.28
[Common] Change password  (0) 2017.05.28
[Ubuntu] 저장소를 다음카카오로 변경  (0) 2017.05.28
[Ubuntu] '/etc/profile' 과 '/home/계정/.profile' 차이  (0) 2014.02.18
Posted by 후니아부지
:

[Common] Change password

앎/linux 2017. 5. 28. 22:56 |

root 변경 후 작업

$ sudo su -


특정 계정 암호 변경

# passwd [계정]


root 암호 변경

# passwd



Posted by 후니아부지
:

다음카카오에서 제공하는 저장소로 변경해보자.


주소는 다음과 같다.

ftp.daumkakao.com


먼저 sources.list를 백업한다.

$ sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak


SED를 사용해서 kr.archive.ubuntu.com 를 ftp.daumkakao.com 로 바꿔 저장한다.

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


Update & Upgrade

$ sudo apt-get update

$ sudo apt-get upgrade



Posted by 후니아부지
:

/etc/profile 과 /home/계정/.profile 은 사용자가 로그인할 때 적용되는 스크립트를 정의하는 파일이다.


일반적으로 ‘/etc/profile’에는 시스템 전반적인 환경 설정 값을 설정하고, ‘사용자 계정의 profile’에서는 해당 계정 사용자가 자신의 환경에 맞는 설정을 하게 된다.


로그인 시 ‘/etc/profile’ 스크립트 내용이 먼저 실행되고 이후에 각 ‘사용자 계정의 .profile’ 스크립트 내용이 실행된다.


root의 경우 ‘/root/.profile’ 또는 ‘/root/.bash_profile’ 이고 일반 사용자의 경우 ‘/home/계정/.profile’ 또는 ‘/home/계정/.bash_profile’이 실행된다.

 

‘/etc/profile’은 모든 사용자에게 적용이 되며 ‘사용자 계정의 .profile'은 로그인 한 해당 계정에만 적용된다.


따라서 root의 profile을 수정한다고 해서 다른 계정에 적용되지는 않는다.


' > linux' 카테고리의 다른 글

[Ubuntu] Set static address  (0) 2017.05.28
[Ubuntu] SSH  (0) 2017.05.28
[Common] Change password  (0) 2017.05.28
[Ubuntu] 저장소를 다음카카오로 변경  (0) 2017.05.28
[Ubuntu] '*** is not in the sudoers file' 오류 발생 시 처리  (0) 2014.02.18
Posted by 후니아부지
:

<username> is not in the sudoers file.  This incident will be reported



sudo 명령을 이용할 때 나타나는 문구이다.



/etc/sudoers 파일을 수정하여 해결한다. 

<username> ALL=(ALL) ALL



다른 방법으로는 


#> echo 'USERNAME ALL=(ALL) ALL' >> /etc/sudoers


모든 명령을 패스워드 입력 없이 사용하도록 허락하는 방법은 다음과 같다.

#> echo 'USERNAME ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers



' > linux' 카테고리의 다른 글

[Ubuntu] Set static address  (0) 2017.05.28
[Ubuntu] SSH  (0) 2017.05.28
[Common] Change password  (0) 2017.05.28
[Ubuntu] 저장소를 다음카카오로 변경  (0) 2017.05.28
[Ubuntu] '/etc/profile' 과 '/home/계정/.profile' 차이  (0) 2014.02.18
Posted by 후니아부지
: