http://askubuntu.com/questions/138408/how-to-add-display-resolution-fo-an-lcd-in-ubuntu-12-04-xrandr-problem


You can add missing resolutions to Ubuntu 12.04 using xrandr.

First, use cvt to create a new resolution mode.

sudo cvt 1920 1080 60

Part of the output should be similar to this: "Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync" (w/o the quotes).

Next, declare a new resolution mode.

sudo xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

Next, find out the name of your video device.

sudo xrandr -q

Mine was named "Virtual1" (running a virtual machine). Once you know the name of your device, you can, finally, add your new resolution mode to the device/system.

sudo xrandr --addmode Virtual1 1920x1080_60.00

See more information in the "Adding undetected resolutions" section here:https://wiki.ubuntu.com/X/Config/Resolution/#Adding_undetected_resolutions

shareimprove this answer



신기한 커맨드들;

'Binary Life > 펭귄' 카테고리의 다른 글

[작성중/메모] coredump  (0) 2012.07.05
bash shell coloring  (0) 2012.05.31
*nix commands  (0) 2012.01.12
[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
오랜만에 ubuntu  (2) 2009.03.10

글을 굉장히 상세히 잘 적어주셔서 공부됐습니다 ~_~/


1. ospace님 블로그 (http://ospace.tistory.com/143)


2. ubuntu forum kr (http://www.ubuntu.or.kr/viewtopic.php?f=9&t=1596&p=7568)



'Binary Life > 펭귄' 카테고리의 다른 글

우분투 해상도 수동 추가  (0) 2014.05.06
[작성중/메모] coredump  (0) 2012.07.05
*nix commands  (0) 2012.01.12
[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
오랜만에 ubuntu  (2) 2009.03.10
급생각 난 shell-script들 적어둡니다. (부끄럽지만ㄱ-)

bash가 주류 이며, 개선 및 지적 코멘트 환영합니다 :)


'Binary Life > 펭귄' 카테고리의 다른 글

[작성중/메모] coredump  (0) 2012.07.05
bash shell coloring  (0) 2012.05.31
[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
오랜만에 ubuntu  (2) 2009.03.10
telnet service on ubuntu intrepid server  (0) 2009.02.05
와 완전 화나더군요
X-NOTE R200 에서 라뎅 쨔응.......
우분투 부팅 때 스플래시 부터 난리도 아니죠
grub 부트 커맨드에서 quiet splash 를 지우고 nomodeset 해주세요

11.04 natty 부턴 걍되네여.....

맨날 까먹어서 포스팅 하니까 되고 그래....

'Binary Life > 펭귄' 카테고리의 다른 글

bash shell coloring  (0) 2012.05.31
*nix commands  (0) 2012.01.12
오랜만에 ubuntu  (2) 2009.03.10
telnet service on ubuntu intrepid server  (0) 2009.02.05
ubuntu intrepid server : 'UTF-8' to 'EUC-KR'  (0) 2009.02.02
Ubuntu desktop theme.
 - Dust : https://wiki.ubuntu.com/Artwork/Incoming/DustTheme
 - Icon : GNOME-Alternative
 - Control : Dust
 - Font : "은진 낙서" (8)
Based on GTK.

뭐 이런 느낌으로?



'Binary Life > 펭귄' 카테고리의 다른 글

*nix commands  (0) 2012.01.12
[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
telnet service on ubuntu intrepid server  (0) 2009.02.05
ubuntu intrepid server : 'UTF-8' to 'EUC-KR'  (0) 2009.02.02
ubuntu themes  (6) 2008.12.13
요새 콩글리쉬 연습하고 있습니다.
많이 도와주세요.

## Key ##
xinetd를 설치하여 telnetd를 운영하게 하면 됩니다.

telnet service on ubuntu intrepid server

1. Install xinetd and telnetd
# sudo apt-get install xinetd
# sudo apt-get install telnetd


2. Modify configuration file
"/etc/xinetd.conf" file shows "includedir /etc/xinetd.d" in 14th line.

Then create a file "telnetd" in "/etc/xinetd.d/" and write down a follow.

service telnet
{
    disable = no
    flags = REUSE
    socket_type = stream
    wait    = no
    user    = root
    server    = /usr/sbin/in.telnetd
    log_on_failure    += USERID
}


3. Restart xinetd
# /etc/init.d/xinetd restart


Reference
 - http://brucekim.egloos.com/1639271

'Binary Life > 펭귄' 카테고리의 다른 글

[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
오랜만에 ubuntu  (2) 2009.03.10
ubuntu intrepid server : 'UTF-8' to 'EUC-KR'  (0) 2009.02.02
ubuntu themes  (6) 2008.12.13
ubuntu compiz on ATI - 동영상 깜빡임 문제  (0) 2008.11.23
## Key & Warnning ##
일반적인 ubuntu 시스템에서는 UTF-8을 사용합니다.
패키지 설치 스크립트는 물론이고, 설치되는 패키지까지 ubuntu의 모든 시스템은 UTF-8을 기본으로 합니다.

여기에서는 EUC-KR로 환경을 구성할 필요가 있을경우에 설정하는 방법을 담았으며
이 설정 적용 후에 실제 패키지 설치시 사용언어에 대한 경고를 보입니다.

환경을 처음부터 구성하신다면 UTF-8 로 구축하셔도 상관없습니다.
자신의 환경에 맞도록 쓰는게 중요하겠죠.

주의하세요☆

ubuntu intrepid server : 'UTF-8' to 'EUC-KR'

1. Install korean language package.
# apt-get install language-pack-ko

2. Generate locale.
# locale-gen ko_KR.EUC-KR

3. Modify language setting files.
# vi /var/lib/locales/supported.d/ko
ko_KR.EUC-KR EUC-KR

# vi /etc/environment
LANG = "ko_KR.EUC-KR"
LANGUAGE="ko_KR:ko:en_GB:en"

# vi /etc/default/locale
LANGUAGE="ko_KR.EUC-KR"

4. Reconfigure locales.
# dpkg-reconfigure locales

5. And then, restart the system.
# shutdown -r now


References
 - http://www.cyworld.com/gon0121/2698385
 - http://blog.naver.com/ltw1372?Redirect=Log&logNo=10030609941

'Binary Life > 펭귄' 카테고리의 다른 글

오랜만에 ubuntu  (2) 2009.03.10
telnet service on ubuntu intrepid server  (0) 2009.02.05
ubuntu themes  (6) 2008.12.13
ubuntu compiz on ATI - 동영상 깜빡임 문제  (0) 2008.11.23
pure-ftpd 설정 쪼끔.  (0) 2008.11.22
icon theme : gnome-themes-extras for Gion
gdm-theme :
control-style : Inverted
window-edge-style : DarkRoom

...with compiz

이 조합이 맘에 들길래 한번 끄적-

'Binary Life > 펭귄' 카테고리의 다른 글

telnet service on ubuntu intrepid server  (0) 2009.02.05
ubuntu intrepid server : 'UTF-8' to 'EUC-KR'  (0) 2009.02.02
ubuntu compiz on ATI - 동영상 깜빡임 문제  (0) 2008.11.23
pure-ftpd 설정 쪼끔.  (0) 2008.11.22
'$> ps aux' column.  (0) 2008.11.16
그동안 계속 동영상 볼때 깜빡거려서 데스크탑에서 보곤 했었는데..

http://ubuntu.or.kr/viewtopic.php?p=5076
이런문제가 있었다네요..
여하튼 ATI는 마음에 안들어요..

vlc 설치해서 설정 - video - X11 하니까 괜찮네요 ^_^.

frame skip이라던지 drop이라던지 조금씩 만져줘야 하지만 -ㅅ-;;

'Binary Life > 펭귄' 카테고리의 다른 글

ubuntu intrepid server : 'UTF-8' to 'EUC-KR'  (0) 2009.02.02
ubuntu themes  (6) 2008.12.13
pure-ftpd 설정 쪼끔.  (0) 2008.11.22
'$> ps aux' column.  (0) 2008.11.16
USB in Guest OS of VirtualBox on ubuntu intrepid.  (0) 2008.11.13
pure-ftpd 써보려다가 설정하는 걸 못찾아서 윤식이형(amur)에게 도움을 요청 !

포스팅 해두셨더래요

저랑 목적은 좀 달랐지만 ^^;


출처 : http://blog.naver.com/amur84.do?Redirect=Log&logNo=130033701098

//

windows xp on virtualbox 에서 접속 안되길래 GG쳤슴..
pure 이외의 ftp server는 안돌려봐서 어느쪽이 문제인진 모르겠지만,
filezilla로 ftp는 안되었지만 sftp는 되었기에 pure쪽에 문제가 있나 싶기도 하고..
[항목별 내용]
  • USER : 프로세스 소유자의 로그인 이름
  • PID : 프로세스의 프로세스 ID
  • RSS : 프로세스의 실제 메모리(상주 집합) 크기(1KB 단위)
  • SZ : 프로세스 코어 이미지의 1KB 단위 크기
  • TTY : 프로세스를 위한 제어 워크스테이션
  • STAT : 프로세스 상태를 포함하고 있습니다.
  • (0 : 존재하지 않음 , A : 사용 중 , I : 중간 , Z : 취소 , T : 중지 , K : 사용가능한 커널프로세스)
  • STIME : 프로세스의 시작 시간
  • TIME : 프로세스에 대한 총 수행 시간
  • COMMAND : 명령 이름
  • %CPU : 프로세스 시작 이후에 프로세스가 CPU를 사용한 시간의 백분율. 값은 프로세스에서 CPU를 사용한 시간을 프로세스의 경과 시간으로 나누어 계산됩니다. 멀티프로세서 환경에서, 값은 동일한 프로세스의 여러 스레드가 동시에 서로 다른 CPU에서 수행한 이후로 사용가능한 CPU의 수로 나누어집니다. (이 데이타가 계산된 시간 기준은 다양하므로, 모든 %CPU 필드의 합계가 100%를 초과할 수 있습니다.)
  • %MEM : 이 프로세스에 의해 사용된 실제 메모리 비율. 종료되어 이제는 프로세스를 기다리지 않는 상위가 있는 프로세스는 <defunct>. 종료 시도가 방해된 프로세스는 <exiting>. ps 명령은 프로세스가 메모리나 교환 영역에 의해 작성되었을 때 주어진 파일 이름이나 인수의 판별을 시도합니다.
[실행결과]

%> ps aux

USER        PID   %CPU  %MEM   SZ  RSS  TTY  STAT  STIME          TIME  COMMAND
----------------------------------------------------------------------------------------------
root           774    34.0      0.0       12    12      -       A      11월26:14:6    13:00   wait
root           516    28.4      0.0       12    12      -       A      11월26:12:22    6:39   wait

.....

출처 : http://blog.naver.com/ez2jsh?Redirect=Log&logNo=70013121325

PROCESS STATE CODES
       Here are the different values that the s, stat and state output
       specifiers (header "STAT" or "S") will display to describe the state of
       a process.
       D    Uninterruptible sleep (usually IO)
       R    Running or runnable (on run queue)
       S    Interruptible sleep (waiting for an event to complete)
       T    Stopped, either by a job control signal or because it is being
            traced.
       W    paging (not valid since the 2.6.xx kernel)
       X    dead (should never be seen)
       Z    Defunct ("zombie") process, terminated but not reaped by its
            parent.

       For BSD formats and when the stat keyword is used, additional
       characters may be displayed:
       <    high-priority (not nice to other users)
       N    low-priority (nice to other users)
       L    has pages locked into memory (for real-time and custom IO)
       s    is a session leader
       l    is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)
       +    is in the foreground process group

출처 : man ps
Could not load Host USB Proxy Service (VERR_FILE_NOT_FOUND) - VirtualBox Error

※ Guest Windows에서 USB사용하려면 이걸론 안되고 아래에 USB인식 부분을 참고 하세요 !

X-NOTE R200에 설치한 ubuntu 8.10 beta (intrepid) 계속 쓰고 있었어요.
VMware쓰다가 VirtualBox-OSE(시냅틱으로 설치한)로 갈아탔었는데
http://www.virtualbox.org 에서 deb패키지 받아다가 설치 했더니 이게 왠..

usb device load error !! ㅠㅠ

구글링구글링~

출처 : http://dreamlinuxforums.org/index.php/topic,167.msg965.html#msg965


VirtualBox의 Guest OS 에서 USB 인식


출처 : http://tistory.izyou.net/2460881

내용 조금 변경했습니다..
예전에 본거였는데, 돌아다니다가 보여서 적어둬요☆

Alt+SysRq

If all else fails, you may still be able to communicate with the Kernel.

To use, just press the Alt and SysRq (PrintScreen) keys and one of the keys listed below, all together. You should try switch into a terminal window, if possible, first by pressing Ctrl+Alt+F2.

If your computer is not responding you can use the following steps to perform a reboot with less chance of fscking your files. This is the method suggested on Wikipedia's Magic SysRq key page.

  1. Press Ctrl+Alt+F2 to switch to a terminal window. Sometimes, this is not possible.
  2. Press Alt+SysRq+R to get the keyboard
  3. If pressing Ctrl+Alt+F2 before failed, try it again now.
  4. Press Alt+SysRq+S to sync your disks.
  5. Wait for OK or Done message.
  6. Press Alt+SysRq+E to term all processes.
  7. Press Alt+SysRq+I to kill all processes.
  8. Press Alt+SysRq+U to umount all disk drives.
  9. Wait for OK or Done message.
  10. Press Alt+SysRq+B to reboot.

The Full list of available commands is shown below. It's largely taken from Documentation/sysrq.txt in the Linux Kernel Sources.

Alt+SysRq+ Action Uses
R UnRaw Turns off keyboard raw mode. This allows input from the keyboard even if X-Window has crashed.
K SAK - Kill all on console Secure Access Key - Kills all programs on the current virtual console. This is useful if you want to make sure there are no programs waiting on the console to grab your password, or if a process won't let you switch consoles.
S Sync Attempts to sync all filesystems. This lessens the chance of data loss and fscking. Syncing is complete when "done" or "OK" is printed.
U Umount Attempts to remount all filesystems as read-only. Umounting is complete when "done" or "OK" is printed.
B Reboot Will immediately reboot without syncing or unmounting any disks. Before using this use Alt+SysRq+S and Alt+SysRq+U to avoid data loss.
C Crashdump Will perform a kexec reboot, in order to take a crashdump. Before using this use Alt+SysRq+S and Alt+SysRq+U to avoid data loss.
O Power Off Turns off the computer without syncing or unmounting disks. Before using this use Alt+SysRq+S and Alt+SysRq+U to avoid data loss.
P Show Pc Attempts to dump all registers and pointers to console.
T Show Tasks Attempts to dump a list of all tasks to console.
M Show Memory Info Displays memory info to console
V Voyager processor info Dumps Voyager SMP processor info to your console.
0-8 Kernеl Error Verbosity Set the console log level for kernel messages. Setting to 0 only shows messages like PANIC and OOPS
F OOM Kill Calls oom_kill to kill a memory hog process
E Term Sends SIGTERM signal to all processes.
I Kill Kills (sends SIGKILL signal to) all processes.
L Kill + Kill Init Kills (sends SIGKILL signal to) all processes, including init. You will not be able to do anything else after using this!
N Nice Make real-time processes nice-able.
H Help Prints some help

출처 : http://en.wikibooks.org/wiki/Linux_Guide/Freezes
관련 : http://en.wikipedia.org/wiki/Magic_SysRq_key
참고 : http://jeongsw.tistory.com/178

'Binary Life > 펭귄' 카테고리의 다른 글

'$> ps aux' column.  (0) 2008.11.16
USB in Guest OS of VirtualBox on ubuntu intrepid.  (0) 2008.11.13
우분투 8.10 베타 기준 // XNOTE R200에서 한글 환경 설정  (4) 2008.10.22
ubuntu font antialias  (0) 2008.03.25
Directory Tree  (2) 2007.09.19
아 맨날 뻘짓 = =...

처음에 다 영어로 설치 되는데, 시냅틱 관리자에서 한글 패키지 설치 해줌
(패키지들은 아래에 블록에 있슴)

한/영키 스크립트는 ~/.xmodmap 에 실행 권한 포함으로 (ex 0755) 주고,
'시스템 - 기본설정 - 세션' 에서 이 스크립트를 추가해 줍니다.
#!/bin/sh
xmodmap -e 'keycode 108 = Hangul'
xmodmap -e 'keycode 105 = Hangul_Hanja'

해줬음

nabi
설치하고

shell에서
$ im-switch -c

하면 여러 항목 나오는데
nabi
선택해줬음.

그리고 리붓~

한글언어 패키지들
language-pack-gnome-ko
language-pack-gnome-ko-base
language-pack-ko
language-pack-ko-base
language-support-fonts-ko
language-support-input-ko
language-support-ko
language-support-translations-ko

/etc/fonts/language-selector.conf

antialias & hiting options : false -> true.
/////////////////////////

<한영키 문제 해결 방법> 시스템>기본설정>키보드>키배치 에서 한국식 키보드 ㄱㅅ

/////////////////////////////////
#beryl
http://download.tuxfamily.org/3v1deb feisty eyecandy
/////////////////////////////////
#avant-window-navigator
http://download.tuxfamily.org/syzygy42/
/////////////////////////////////
For this to work, first install emerald (and svn for themes):
# sudo apt-get install emerald  subversion

How you can download the themes, however the current svn for GPL’d themes seems to not work, here’s another way to install those:

# cd ~/.emerald/themes
#svn checkout http://svn.beryl-project.org/beryl/trunk/emerald-themes-repo \
&& for theme in emerald-themes-repo/*.emerald ; do dir=`basename “$theme” \
.emerald`; mkdir $dir ; tar xzf $theme -C ${dir}/ ; done

For the non GPL’d Themes, simply dl them from inside the Emerald GUI.

To replace metacity with emerald, run:

# emerald --replace

For emerald settings, run:

# emerald-theme-manager
//////////////////////////////////
창틀 사라지면
$ sudo nvidia-xconfig --add-argb-glx-visuals
후에 리붓

..그냥 재밌어서..

함수 좀 드러웠다..

포멧 스트링에서 %*s = depth,"" 인데.. depth 만큼 공백출력이 *임-ㅁ-


Linux Shell Programming 실습 책에서 -
노트북에서 너무 우분투를 쓰고 싶어서 -ㅅ-

beryl등의 자질구래한건 안되도 일단 데탑으로 쓰기로 하고

Vista HomePremium에서 VMware 6 Workstation 위에 feisty alternate를 설치 T_T

완전 안습 ㅠㅠ

요 며칠 쓰고 있는데.. vm에서 쓰고 있는데도 꽤 잘 나가는 녀석.

단점이라면.. 아리가 너무 열을 많이 낸다는것?


feisty in VMware 6 Workstation

ubuntu - feisty - in VMware 6 Workstation under Windows Vista Home Premium on 아리


'Binary Life > 펭귄' 카테고리의 다른 글

ubuntu font antialias  (0) 2008.03.25
Directory Tree  (2) 2007.09.19
ubuntu [한글입력, 한/영 한자키, 글꼴] & [APM 설치]  (2) 2006.11.17
zb4 install in mysql 4.1 _ linux apm  (4) 2006.11.05
XGL 출처 지식인  (0) 2006.10.09
와 기뻐라 /ㅅ/

...근데 굴림, 돋움, 바탕 된다더니
굴림밖에 안뜨더라 ㅅㅂㄹㅁ ㄱ-

6.10 깔았는데 root 계정으로 로그인했더니 gnome이 영어라서 ㅈㅈ 치고
6.06 LTS 로 다시 돌아갔다.

...근데 LTS가 뭐지 ㄱ-



'Binary Life > 펭귄' 카테고리의 다른 글

ubuntu font antialias  (0) 2008.03.25
Directory Tree  (2) 2007.09.19
ubuntu feisty-fawn in VMware 6 Workstation  (4) 2007.09.14
zb4 install in mysql 4.1 _ linux apm  (4) 2006.11.05
XGL 출처 지식인  (0) 2006.10.09

'Binary Life > 펭귄' 카테고리의 다른 글

ubuntu font antialias  (0) 2008.03.25
Directory Tree  (2) 2007.09.19
ubuntu feisty-fawn in VMware 6 Workstation  (4) 2007.09.14
ubuntu [한글입력, 한/영 한자키, 글꼴] & [APM 설치]  (2) 2006.11.17
XGL 출처 지식인  (0) 2006.10.09

...출처 지식인 -_)

'Binary Life > 펭귄' 카테고리의 다른 글

ubuntu font antialias  (0) 2008.03.25
Directory Tree  (2) 2007.09.19
ubuntu feisty-fawn in VMware 6 Workstation  (4) 2007.09.14
ubuntu [한글입력, 한/영 한자키, 글꼴] & [APM 설치]  (2) 2006.11.17
zb4 install in mysql 4.1 _ linux apm  (4) 2006.11.05

+ Recent posts