Difference between revisions of "Lubuntu desktop/zh"

From FriendlyELEC WiKi
Jump to: navigation, search
(Lubuntu desktop屏幕旋转)
(Lubuntu desktop屏幕旋转)
Line 1: Line 1:
 
[[Lubuntu desktop|English]]
 
[[Lubuntu desktop|English]]
 +
 +
===USB摄像头===
 +
将USB摄像头(比如罗技C270)插入开发板,在Lubuntu上打开菜单 Other,启动 xawtv 程序即可预览摄像头的图像。
  
 
===Lubuntu desktop屏幕旋转===
 
===Lubuntu desktop屏幕旋转===

Revision as of 06:33, 16 January 2018

English

1 USB摄像头

将USB摄像头(比如罗技C270)插入开发板,在Lubuntu上打开菜单 Other,启动 xawtv 程序即可预览摄像头的图像。

2 Lubuntu desktop屏幕旋转

首先删除armsoc的配置文件:

sudo rm -f /usr/share/X11/xorg.conf.d/20-armsoc.conf

然后新建一个配置文件 /etc/X11/xorg.conf:

sudo vi /etc/X11/xorg.conf

xorg.conf内容如下:

Section "Monitor"
    Identifier          "Primary"
    VendorName          "FriendlyARM"
EndSection
 
Section "Device"
    Identifier          "Primary"
    Driver              "fbdev"
    Option              "fbdev" "/dev/fb0"
    Option              "Rotate" "CW"
EndSection

上面的设置是将屏幕旋转90了度,角度是由Rotate字段指定的,Rotate字段可选的值如下:
CW 旋转90度
UD 旋转180度
CCW 旋转270度
保存设置后需要重启开发板或者lightdm服务。