종달랩 종다리 이야기

우분투에서 ATI Driver 설정은 포기

Computer Science/리눅스
반응형
우분투를 설치하고 여러가지 테스트를 하는 도중에 몇가지 게임들이 작동하지 않는다는 사실을 알았다.

이것 저것 확인해본 결과 비디오카드가 제대로 잡히지 않았다는 사실을 알아냈다.

내가 사용하는 비디오카드는 ATI Radeon 9200 LP버전이다.

인터넷상에서 자료를 찾아 보다가 결국 얻어낸 결과는 

"No Country for old ATI card"

아주 전문적으로 이 문제를 해결하는 방법도 찾아내기는 했지만, 가장 좋은 방법은 비디오카드를 바꾸는 것임을 깨닫고 결국 VESA모드에서 사용하기로 결정했다.

혹시 이 문제로 고민하시는 분들은 일찍이 포기하시는게 좋을 듯 싶네요. 전10시간 정도 투자해서 결론을 내렸습니다.
반응형

우분투 리눅스에 DocuPrint C525A 드라이버 설치하는 방법

Computer Science/리눅스
반응형
예전에는 리눅스의 드라이버 부족과 설치의 어려움때문에 시도조차 하지 않았던 부분인데 이제는 많이 편해지고 자료도 많아진것에 감사할 따름이다.


귀찮은 분들을 위해서 핵심 내용만 발취

Apologies to the above 2 gentleman, but completeness is godliness. 

I'm running on a P3 Dell, 312 MB Ram, Ubuntu 7.04 Feisty. I'm setting up Fuji Xerox C525A on a network, not USB, not parallel.

Download Fuji Xerox C525A driver from www.fxprinters.com, choose Singapore -> select Fuji Xerox C525A -> Linux.

Most likely its downloaded to your Desktop and its called dpc525a_linux_.0.0.tar.zip, and double click to unzip and untar.

In the terminal,
Quote:
cd ~/Desktop/C525A_LinuxE/
and then
Quote:
sudo alien Fuji_Xerox-DocuPrint_C525_A_AP-1.0-1.i386.rpm
, which will covert into fuji-xerox-docuprint-c525-a-ap_1.0-2_i386.deb .
If you do not have alien,
Quote:
sudo apt-get install alien
This is followed by
Quote:
sudo dpkg -i fuji-xerox-docuprint-c525-a-ap_1.0-2_i386.deb
Do a 
Quote:
sudo mkdir /usr/share/ppd/cups-included/FX/
Quote:
sudo cp -p /usr/share/cups/model/FujiXerox/en/FX_DocuPrint_C525_A_AP.ppd /usr/share/ppd/cups-included/FX/.
*thanks to grantbuntu (msg below mine), be careful when you copy and paste, there's a space formed that cause "_C5 25_", it should be "_C525_", I'm clueless on how to rectify this. Can someone show me?

Add Printer using the System -> Administration -> Printing - > Add Printer -> 
Use a detected printer: FUJI XEROX DocuPrint C525 A-AP (FUJI XEROX DocuPrint C525 A-AP XXX.XXX.XXX.XXX) !If you can't see this, most likely you have not set your IP for your printer, please refer to printer instruction manual for this.
-> Forward -> Manufacturer: FX Model: DocuPrint C525 A-AP v1.0.
This is wrong, might work, but it took me 15 minutes to print a 1 page document. Thanks to C525A_Linux_manE.pdf in the dpc525a_linux_.0.0.tar.zip , this is how its suppose to be done. If a dialog window asks you for your user name and password, give them the login username and password. 
반응형

Android "emulator: ERROR:unknown virtual device.." 에러메시지 원인 및 방법

Computer Science/리눅스
반응형
간만에 안드로이드 개발환경을 꾸미다가 닥친 문제점..

Android Virtual Device를 생성하고 에뮬레이터를 띄웠는데.. 에러가 나는 것이다.


한참을 이유를 찾아헤매다가 알아낸 사실은 이것이다.

윈도우를 설치하고 내문서의 위치를 기본에서 D:드라이브로 바꾼 상태인데, 이것이 화근인 것이다.
에뮬레이터는 %USERPROFILE%.. 즉 "내문서"의 위치는 바뀌었어도 원래 로그인 사용자의 정보가 담기는 디렉토리를 기억하는 것이다.

쉽게 이야기 하면, "c:\users\사용자ID\.android"에서 avd를 찾는다는 것이다.

그런데, 실제는 "d:\my documrnts\.android"에 생성이 되는 것이다.

이 문제는 실제 생성된 (저같은 경우에는 d드라이브에 생성된 avd)것을 에뮬레이터가 원하는 위치(c드라이브)로 옮기는 것이다.







반응형