Translate

2013년 7월 3일 수요일

[강좌] Blender 2.6x 이후 주메뉴 (UI) 표시 ...



Blender 2.6x 이후 버전 부터는 어쩐 일인지 실행을 시키면 주메뉴를 비롯한 UI 가 제대로 표시가 되지 않습니다.


















이 문제는 Blender의 폴더 구조에서 누락된 부분이 있어서 생기는 겁니다.
프로그램 실행 시 프로그램의 사용자 환경 (UI) 등의 블렌더 기동에 필요한 사항이 저장되어 있는 폴더인 config 폴더를 검색하는 데 이 config 폴더는 LOCAL 폴더 혹은 USER 폴더에 존재해야 합니다. 프로그램 설치 시 어떠한 문제로 이 config 폴더가 제대로 생성이 되지 않으면 이 오류가 생기는 겁니다.


참고 : Blender 폴더 구조


해결 방법은 이 config 폴더를 만들어 주면 되는데, 운영체제에 따라서 해결 방법이 좀 다릅니다.


o. MS-Windows 경우


LOCAL 폴더 아래에 config 폴더를 만들어 주면 됩니다.


A = Blender를 설치한 기본 폴더 - 반드시 영어로 하세요. 한글 등 다른 언어로 하면 실행이 안 됩니다.
B = Blender 버전 번호 - 설치 시 기본적으로 생성되는 폴더입니다. 절대 이름을 바꾸지 마세요.
LOCAL = A \ B


LOCAL \ config


예)  C:\ GNU \ Blender Foundation \ blender-2.66-windows32 \ 2.66 \ config



o. Linux의 경우


USER 폴더 아래에 config 폴더를 만들어 주면 됩니다.


C = Blender 버전 번호 - 현재 설치되어 있는 프로그램의 버전을 따라 갑니다.
USER = $HOME / .config / blender / C


USER / config


예)  ~ / .config / blender / 2.66 / config



o. OSX의 경우


OSX를 사용 해 본 적이 없어서 모릅니다.




*. 한 줄 요약 : Blender의 사용자 데이터 환경 설정 파일이 저장되는 config 폴더가 존재해야 한다.


☞ 윈도우의 경우 한글 계정인 경우에도 문제없이 잘 됩니다. Install 버전이 아닌 압축 파일 버전도 문제없이 잘 됩니다. 단, 폴더 생성 시 권한과 철자의 대소문자에 주의하세요.
















*. 추가

이런 오류가 생기는 것은 Blender 내부 스크립트 처리기인 Python(파이썬)의 폴더/파일 이름 인식 오류 때문인 것 같습니다. 파이썬은 영어권 문자를 제외한 문자가 폴더/파일 이름에 있는 경우는 인식을 하지 못하는 오류가 있습니다.

Blender를 실행시키면 config 폴더를 USER → LOCAL → SYSTEM  순서로 찾습니다.

이 과정에서 오류가 생기면 config 폴더를 찾지 못하게 되어 초기화 정보가 사라지는 겁니다.



------





한글 UI 로 바꾸는 방법입니다.



1. User Preferences
 


























2. System - International Fonts






3. Korean (한국 언어) 선택



























 4. 한글 UI 환경  - Interface 와 Tooltips 를  선택























2013년 7월 2일 화요일

[정보] Install Linux Kernel 3.10 (Stable) in Ubuntu/Linux Mint ...

원문 : http://www.upubuntu.com/2013/07/install-linux-kernel-310-stable-in.html

01 July 2013

Install Linux Kernel 3.10 (Stable) in Ubuntu/Linux Mint


Linux Kernel 3.10 in its stable release has been made available recently bringing more new features and improvements. Among the best features in Kernel 3.10 we can find the following:

  • The integration of BCache SSD/HDD caching framework
  • UVD video decoding support
  • Improved support for Intel Haswell Linux
  • More improvements for power management, etc.
For more information, check this link. In this tutorial, we will see as usual how to upgrade to this new kernel using a simple bash script as shown below. Installing a new kernel may render your operating system unusable, so install it at your own risk.

Linux Kernel 3.10 Installation

Open the terminal and run these commands under Ubuntu/Linux Mint:

 cd /tmp 
 wget http://dl.dropboxusercontent.com/u/47950494/upubuntu/kernel-3.10 -O kernel-3.10 
chmod +x kernel-3.10 
sudo sh kernel-3.10 
sudo reboot

To remove kernel 3.10 from your system, enter this command:

sudo apt-get purge linux-image-3.10*