在我的asus x553
电脑上,我清除了硬盘,删除了 win 8.2,然后安装了 Ubuntu 14.04。启动时,我收到错误消息 could not switch on monitor configuation
,而且ocould not set configuration for CRTC 63
由于我的笔记本电脑屏幕被掉落的酒瓶砸坏了,我唯一的解决办法是使用外接显示器。
我真正的问题是,外接显示器视图是无法使用的拉伸屏幕。所以每次我启动时都会在终端中输入
xrandr --output vga1 --mode 1024x768
这样显示器就配置好了,可以使用了。我该如何配置电脑呢?我 ~/.xprofile
在终端中试过了,但它说没有这样的文件。有什么建议吗???
答案1
对于系统范围的配置,创建文件/etc/X11/Xsession.d/45x11-custom_xrandr-settings
sudo nano /etc/X11/Xsession.d/45x11-custom_xrandr-settings
并添加您的配置
xrandr --output vga1 --mode 1024x768
.xprofile
对于用户特定的配置,请在主文件夹中创建文件
nano ~/.xprofile
并添加
xrandr --output vga1 --mode 1024x768