我有一台 32 英寸的电视,我想将它用作辅助显示器。
我一直在关注有关如何使用 xorg.conf 更改分辨率的指南。
我在里面创建了三个文件/etc/X11/xorg.conf.d/:
40-monitor.conf:
Section "Monitor"
Identifier "VGA1"
Option "PreferredMode" "1408x792"
EndSection
Run Code Online (Sandbox Code Playgroud)
30-graphic.conf:
Section "Device"
Identifier "Intel Integrated"
Driver "intel"
EndSection
Run Code Online (Sandbox Code Playgroud)
50-screen.conf:
Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1408x792" "1024x768" "640x480"
EndSubSection
EndSection
Run Code Online (Sandbox Code Playgroud)
它不起作用。
我试图应用该决议,但没有奏效。电视告诉我它使用的分辨率是 1024x768。
附注。我想要的分辨率是1408x792.
PS2。我几个月前配置了这个,但不幸的是丢失了硬盘上的所有东西,今天不得不从零开始安装 Fedora 24,我不记得我的xorg.conf样子了。:(
请让我知道,如果你有任何问题!
我真的很喜欢C* Music Player(CMUS),我刚刚安装了 Fedora 22,因为我在使用 Fedora 21 时遇到了问题。问题是我找不到任何可执行文件来安装这个音乐播放器。我试过了dnf,没有用,输出如下:
Last metadata expiration check performed 1:10:46 ago on Sun Jul 26 16:14:36 2015.
No package cmus available.
Error: no package matched: cmus
Run Code Online (Sandbox Code Playgroud)
我在 FedoraProject.Org 上找到了这个答案:https ://ask.fedoraproject.org/en/question/68940/where-can-i-find-cmus-program-for-fedora/
它说如果你安装了 rpmfusion 使用dnf就足够了。我安装了 rpmfusion 并再次尝试,但没有成功。以下是我免费和非免费安装 rpmfusion 的方法:
wget http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-22.noarch.rpm
dnf install rpmfusion-free-release-22.noarch.rpm
wget http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-22.noarch.rpm
dnf install rpmfusion-nonfree-release-22.noarch.rpm
Run Code Online (Sandbox Code Playgroud)
在那之后,我决定自己编译源代码并尝试,我安装gcc并尝试:
./configure这是输出:
checking for program gcc... /usr/bin/gcc
checking for program gcc... /usr/bin/gcc
checking for CFLAGS -std=gnu99 -pipe -Wall -Wshadow …Run Code Online (Sandbox Code Playgroud)