WOONO's Blog






Ubuntu 12.04 - UTF8 한글 깨짐 해결 방법




"Totem Player", "Rhythmbox " 등에서 "UTF-8" 로 설정 할 경우 한글이 깨지는데 근본적인 해결책은 UTF-8 을 사용하는 것이 맞지만 대부분의 국내 사용자 환경은 "EUC-KR" 이기 때문에 아래 방법대로 하면 해결된다.



- 범용 profile

etc/profile


- 개인 사용자용 profile

~/.profile


둘 중 아무 파일이나 수정을 해도 된다.



$ sudo vi /etc/profile


or


$ sudo vi ~/.profile




/etc/profile





위와 같이 수정했으면 저장 하고 ubuntu 를 "재 시작" 한다.





Posted by woono

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