기본 콘텐츠로 건너뛰기

8월, 2013의 게시물 표시

[리눅스 명령어] 그룹에 사용자 추가

출처:  http://www.cyberciti.biz/faq/howto-linux-add-user-to-group/ H ow can I add a user to a group under Linux operating system using command line options? You can use the  useradd  or  usermod  commands to add a user to a group. The useradd command creates a new user or update default new user information. The usermod command modifies a user account and it is useful to add user to existing groups. There are two types of groups under Linux operating systems: Tutorial details Difficulty Intermediate  ( rss ) Root privileges Yes Requirements usermod/useradd Estimated completion time 5 minutes Primary user group. Secondary or supplementary user group. All user account related information are stored in the following files: /etc/passwd  - Contains one line for each user account. /etc/shadow  - Contains the password information in encrypted formatfor the system's accounts and optional account aging information. /etc/group  - Defines the groups on the system.

[리눅스 명령어] Unity Panel에 Launcher추가

출처 :  http://www.geekyboy.com/archives/384 요약: 나는 아래 본문에 소개된 여러 방법들중에 Method2가 가장 편리하다 생각함. 1. 설치 sudo apt-get install --no-install-recommends gnome-panel 2. alias 등록하기 echo 'alias createLauncherIcon="sudo gnome-desktop-item-edit /usr/share/applications/ --create-new"' \ >> ~/.bashrc 3. 실행하기 $ createLauncherIcon 4. 시키는대로 값을 채워넣고 오케이 5. 이제 nautilus /usr/share/applications/아이콘이름.icon을 마우스로 드래그해서 Unity Launcher에 넣어 놓는다. 6. 이제 실행될 것이다. Tip1: 4번에서 아이콘 이미지를 찾는데 종종 아이콘이 굉장히 깊숙한 하위 디렉토리에 숨어 있는 경우가 있다. 파일이 한두개가 아니라 수십개의 경우 다양한 경로를 따라가 노틸러스를 실행해 이미지를 일일히 보는 것도 장난 아닌 막노동이다. 차라리 모든 이미지 파일을 /tmp/images에 복사해놓고 원하는 이미지인지 확인할 수 있다면? $ find . -type f | xargs -i{} file {} | grep -i image | awk -F":" '{print $1}' | xargs -i{} cp {} /tmp/images #이는 하위 디렉토리에 있는 파일들중 이미지파일만을 /tmp/images(미리 만들어야함)에 복사해 준다. 이제 직접 이 /tmp/images/에 있는 파일들을 눈으로 한꺼번에 보고 파일 이름을 파악하면 경로 찾기 끝. (단, awk 프로그래밍 언어를 이용해 콜론을 delimiter로 사용했지만, 이건 어디까지나 파일 이름에 콜론이 없다는 가정 하에만

[알쏭달쏭] 리눅스 명령어

cho "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - sudo apt-get update sudo apt-get install dkms virtualbox-4.2

[리눅스 VirtualBox] 업데이트 시 에러

최선의 방법: 1. 기본 VirtualBox를 완벽히 지워버린다. sudo apt-get purge virtualbox-4.2 dkms linux-headers-$(uname -r) 2. www.virtualbox.com 에서 최신판 deb 패키지를 받아 설치한다. 3. 그래도 문제가 생기면 dkms, 리눅스 헤더파일를 설치하고, dpkg-reconfigure로 VirtualBox 환경을 업데이트 시켜준다. $ sudo aptitude install linux-headers-$(uname -r);sudo dpkg-reconfigure virtualbox;sudo /etc/init.d/vboxdrv setup --------------------- sudo apt-get install --reinstall virtualbox-dkm sudo apt-get install linux-headers-`uname -r` sudo dpkg-reconfigure virtualbox-dkms sudo modprobe vboxdrv ------------------- 4. extension pack을 설치. 5. guest addition을 설치. ////////// 혹은 설치되어 있는 채로, sudo apt-get install dkms build-essential linux-headers-generic sudo /etc/init.d/vboxdrv setup Normally no need to restart, the problem should be solved!