기본 콘텐츠로 건너뛰기

3월, 2009의 게시물 표시

How to Compile Pidgin with Plugins from Source in Intrepid Ibex

I read about an oppurtunity to compile pidgin from source with video and voice support, so I wanted to try. This is how I proceed: Code: sudo apt-get install build-essential dh-make sudo apt-get install gstreamer0.10-plugins-good gstreamer0.10-plugins-bad libgstreamer-plugins-base0.10-dev Installed packages from http://ftp.de.debian.org/debian (added to the sources) Code: sudo apt-get install libgstfarsight0.10-0 libgstfarsight0.10-dev gstreamer0.10-plugins-farsight in order to fetch the last revision of pidgin: Code: apt-get install monotone monotone-viz then: Code: DATABASE=/home/user/monotone_databases/pidgin.mtn WORKINGDIR=/home/user/code/pidgin-mtn cd $(dirname $DATABASE) wget http://developer.pidgin.im/static/pidgin.mtn.bz2 bzip2 -d pidgin.mtn.bz2 mtn -d $DATABASE pull --set-default mtn.pidgin.im "im.pidgin.*" I got an error message so: Code: mtn -d $DATABASE db migrate then again: Code: mtn -d $DATABASE pull --set-default mtn.pidgin.im &qu

도스창 (Command Shell)에서 네트워크(Network) 설정 변경

컴퓨터 관리의 네트워크 어댑터에 장치가 인식되어 있는 상태에서, 소프트웨어 오류로 인해 네트워크 연결 창이 뜨지 않는 등 GUI 환경으로 IP 설정이 되지 않는 문제가 발생될 경우, 아래와 같이 조치 합니다. 다음은 예제입니다. C:\Documents and Settings\snjee.KHENG>netsh interface ip set address name="로컬 영역 연결" source=static addr=192.168.10.99 mask=255.255.255.0 위의 명령을 풀이하면, netsh interface ip set address name="[연결이름,일반적으로 로컬 영역 연결로 되어있음]" source=static addr=[변경 또는 설정할 IP 주소] mask=[서브넷 마스크 주소] 입니다. ipconfig 명령으로 변경(설정)된 IP 주소를 확인합니다. C:\Documents and Settings\snjee.KHENG>ipconfig Windows IP Configuration Ethernet adapter 로컬 영역 연결: Connection-specific DNS Suffix . : IP Address. . . . . . . . . . . . : 192.168.10.97 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 192.168.10.1 참고 1. Gateway 변경 netsh interface ip set address name="로컬 영역 연결" gateway=192.168.10.1 gwmetric=0 참고 2. Primary DNS 변경netsh interface ip set dns name="로컬 영역 연결" source=static addr=192.168.10.2 register=P

Delete user, remove user on Linux Fedora, using userdel command

T he deluser command can be very useful to remove user account or to delete user account on Linux Fedora machine. The article below show the step by step to remove user or some say to delete user for Linux Fedora machine. Command use: # finger [username] <-- Verify user account on the Linux system # userdel [username] <-- Remove user account from Linux system # userdel -r [username] <-- Delete user account, remove home directory including their files and remove mail spool Verify the existents of user with username john on the system: [root@fedora ~]# finger john Login: john Name: (null) Directory: /home/john Shell: /bin/bash Never logged in. No mail. No Plan. [root@fedora ~]# Remove user account or delete user account. [root@fedora ~]# userdel john [root@fedora ~]# Remove user or delete user account along with their user home directory and user mail spool. [root@fedora ~]# userdel -r john [root@fedora ~]# Verify the user deleted from the system. [root@fedora ~]#

Create extra root user account to your Linux box.

The ‘ root ’ account with user id 0 is the most powerful user in Linux and Unix system. This article show the step by step to create the duplicate root account that have the same privileges as super user root account on the Linux Fedora Core operating system. You may want to make replicate of root user account, or to create more than one user account that have the same capabilities as a ' root ' user (superuser) account. Why, may be for a root backup user account, incase of something happen to the ' root ' user account or may be just for fun :-). To create another root user account, we need to replicate the ' root ' user account characteristic, then make one account that have the same characteristic and capabilities of the ' root ' user account. Let begin by check the ' root ' user account. 1. Check user id for ‘ root ’ user account: [root@fedora ~]# id root uid=0(root) gid=0(root) gro