WOONO's Blog





The package is suitable under Hardy, Intrepid and Jaunty.

Source Code (소스코드)

ubuntu-tweak-0.4.7.1.tar.gz

Deb package for all (직접설치)

ubuntu-tweak_0.4.7.1-1~jaunty1_all.deb

Old version of Ubuntu Tweak is available here: (이전버전)

http://code.google.com/p/ubuntu-tweak/downloads/list

How to add the source of Ubuntu Tweak

open your terminal, first import the key: (터미널을 실행하고 Key를 등록)

sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com FE85409EEAB40ECCB65740816AF0E1940624A220


type the command to run gedit(or other editor in your opinion) to modify the sources.list: (gedit를 이용해서 소프트웨어 저장소를 수정)

sudo gedit /etc/apt/sources.list


And put the two line into it(If you are using Ubuntu 8.04 Hardy or early) : (Ubuntu 8.04 의 경우 맨 아래 다음 두줄을 추가)

deb http://ppa.launchpad.net/tualatrix/ubuntu hardy main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu hardy main

 
Or Ubuntu 8.10 Intrepid: (Ubuntu 8.10 의 경우 맨 아래 다음 두줄을 추가)

deb http://ppa.launchpad.net/tualatrix/ubuntu intrepid main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu intrepid main


 Or Ubuntu 9.04 Jaunty: (Ubuntu 9.04 의 경우 맨 아래 다음 두줄을 추가)

deb http://ppa.launchpad.net/tualatrix/ubuntu jaunty main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu jaunty main


Then update the source and install or upgrade Ubuntu Tweak: (Tweak 를 설치)

sudo apt-get update
sudo apt-get install ubuntu-tweak


if you have installed, just type: (업그레이드 확인)

sudo apt-get dist-upgrade


Posted by woono
Ubuntu 에서 LAMP Server 는 두가지 방법으로 설치 할 수 있다.

1. GUI 환경에서 설치

시스템 > 관리 > 스냅틱 패키지 관리자 > 메뉴 ? 편집 > 작업 기준으로 패키지 표시 > LAMP Server 선택


2. Consol 에서 설치

$sudo apt-get install apache2 libapache2-mod-auth-mysql mysql-server mysql-client php5-common php5 libapache2-mod-php5 php5-mysql phpMyAdmin

 
3. Alias 설정 /etc/apache2/httpd.conf

Alias /wp/ “/home/woono/www/wp/”

<Directory “/home/woono/www/wp/”>

Options Indexes

</Directory>

 
Posted by woono
Vmware 6.5.2 에서 Ubunt 9.04 사용시 mouse 가 Vmware Workstation Windows 바깥으로 나가지 못하는 문제

$sudo apt-get install xserver-xorg-input-vmmouse



 
Posted by woono
/etc/xdg/autostart/vmware-user.desktop
/usr/share/gnome/autostart/vmware-user.desktop <- gnome 의 경우

##/etc/xdg/autostart/vmware-user.desktop File


#[Desktop Entry]

#Encoding=UTF-8

#Exec=vmware-user

#Name=VMware User Agent

#X-KDE-autostart-phase=1

#NoDisplay=true

[Desktop Entry]

Type=Application

Encoding=UTF-8

Name=VMware User Agent

Exec=vmware-user

Icon=system-run

Comment=VMware User Agent

X-GNOME-Autostart-enabled=true

 

 
Posted by woono

Ubuntu 9.0.4부터는 ctrl+alt+backspace로 로그아웃이 안되더군요.

Teminal 에서

$ sudo apt-get install dontzap
$ sudo dontzap –disable

 

Posted by woono

1. vmware tool 에서 “VMwareTools-7.8.5-156735.tar.gz” 파일을 복사합니다.

2. “VMwareTools-7.8.5-156735.tar.gz” 압축을 해제합니다.

3. “vmware-tools-distrib/lib/modules/source” folder 에서 “vmhgfs.tar” 파일을 압축을 풉니다.

4. 압축을 해제하면 “vmhgfs-only” 라는 폴더가 생기는데 이폴더에서 “page.c” 파일에서


page = __grab_cache_page(mapping, index); 
항목을 아래처럼 찾아 주석처리하고
page = grab_cache_page_write_begin(mapping, index, flags); 
항목을 추가합니다.
 

// file:page.c File
 

//page = __grab_cache_page(mapping, index); // 주석처리

page = grab_cache_page_write_begin(mapping, index, flags); // 삽입


5. “vmhgfs.tar” 이름을 “vmhgfs.tar.old” 로 변경합니다.

6. “vmhgfs-only” 를 “vmhgfs.tar”로 압축을 합니다.

7. “vmware-tools-distrib” folder 에서 “sudo vmware-install.pl”을 실행하여 설치합니다.

PS : 기존에 vmware-tool 이 설치가 되어 있으면 /usr/bin/vmware-uninstall-tools.pl” 을 실행하여
uninstall 
시킵니다.

최대한 쉽게 설명한다고 썼는데 다소 어려운거 같군요 궁금하신 내용 있으시면 댓글 달아주세요

Posted by woono