2016년 3월 5일 토요일

[Solved]CRTC 63: trying mode 1920x1080@60Hz with output at 1920x1280@60Hz

my pc's OS is Ubuntu 14.02 LTS




Could not apply the stored configuration for monitors
none of the selected modes were compatible with the possible modes:
Trying modes for CRTC 63
CRTC 63: trying mode 2560x1700@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 2048x1536@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1920x1440@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1856x1392@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1792x1344@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1920x1200@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1920x1080@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1600x1200@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1680x1050@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1680x1050@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1600x1024@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1400x1050@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1280x1024@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1440x900@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1280x960@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1360x768@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1360x768@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1152x864@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 1024x768@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 800x600@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 800x600@56Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 640x480@60Hz with output at 1920x1280@60Hz (pass 0)
CRTC 63: trying mode 2560x1700@60Hz with output at 1920x1280@60Hz (pass 1)
CRTC 63: trying mode 2048x1536@60Hz with output at 1920x1280@60Hz (pass 1)
CRTC 63: trying mode 1920x1440@60Hz with output at 1920x1280@60Hz (pass 1)
CRTC 63: trying mode 1856x1392@60Hz with output at 1920x1280@60Hz (pass 1)
CRTC 63: trying mode 1792x1344@60Hz with output at 1920x1280@60Hz (pass 1)
CRTC 63: trying mode 1920x1200@60Hz with output at 1920x1280@60Hz (pass 1)
CRTC 63: trying mode 1920x1080@60Hz with output at 1920x1280@60Hz (pass 1)


I solved this error from this steps.


type cvt 1920 1280 60


sudo vim /usr/share/X11/xorg.conf.d/10-monitor.conf



Section "Monitor"
  Identifier "Monitor0"
  Modeline "1920x1280_60.00"  206.25  1920 2056 2256 2592  1280 1283 1293 1327 -hsync +vsync
EndSection
Section "Screen"
  Identifier "Screen0"
  Device "eDP1"
  Monitor "Monitor0"
  DefaultDepth 24
  SubSection "Display"
    Depth 24
    Modes "1920x1280_60" "1280x960"
  EndSubSection
EndSection




2016년 2월 28일 일요일

How To – Change Hostname on Raspberrypi

How To – Change Hostname on Raspberrypi

To change the hostname
You need to edit 2 files replace raspberry with <name> this is what you choose and does not need <> brackets
1. Edit the hostname file
sudo nano /etc/hostname
raspberry
You will see raspberry change this to whatever you want (one word with  limited characters apply) <name>
CTRL+X press Y then hit Enter
2. Next you need to change the hosts file
sudo nano/etc/hosts
Change the entry 127.0.1.1 raspberry
To 127.0.1.1 <name>
Test with:
cat /etc/hosts
It should return the new name you gave it if not repeat the steps above
3. Reboot
When you login you will see pi@<name> ~ this is your new prompt
sudo reboot