xrandrを使用して4Kモニターで60hzリフレッシュレートを定義する

xrandrを使用して4Kモニターで60hzリフレッシュレートを定義する

最近買った BL3201PT4K@60Hzの提供が可能です。私はDPに接続しました。の出力はxrandr次のようになります。

$ xrandr -v
xrandr program version       1.4.1
Server reports RandR version 1.4
$ xrandr 
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
eDP2 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
   1920x1080      60.1*+   59.9  
   1680x1050      60.0     59.9  
...
VGA1 disconnected (normal left inverted right x axis y axis)
DP1 connected (normal left inverted right x axis y axis)
   3840x2160      30.0  
   2560x1440      60.0  
   1920x1080      60.0     50.0     59.9  
   ....

30Hzだけ出てくるそうですね。新しいスキーマを定義しようとしてエラーが発生します。

X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  16 (RRCreateMode)
  Serial number of failed request:  59
  Current serial number in output stream:  59

グラフィックカード:

$ lspci  | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
01:00.0 VGA compatible controller: NVIDIA Corporation GK106GLM [Quadro K2100M] (rev a1)
14:35:53 ~ 
$ 

ミントを活用する17.ヒントがありますか?

アップデート:ところで、マイコンピュータにデュアルブートがあり、2番目のOS(Windows)ではリフレッシュレートが60Hzです。

出力dpkg -l | grep xfont

$ dpkg -l | grep xfont
ii  libxfont1:amd64                                                      1:1.4.7-1ubuntu0.2                                  amd64        X11 font rasterisation library
ii  xfonts-base                                                          1:1.0.3                                             all          standard fonts for X
ii  xfonts-encodings                                                     1:1.0.4-1ubuntu1                                    all          Encodings for X.Org fonts
ii  xfonts-mathml                                                        6ubuntu1                                            all          Type1 Symbol font for MathML
ii  xfonts-scalable                                                      1:1.0.3-1                                           all          scalable fonts for X
ii  xfonts-utils                                                         1:7.7+1                                             amd64        X Window System font utility programs

追加情報:

$ dpkg -l | grep -i nvidia 
ii  nvidia-settings                                                      370.28-0ubuntu0~gpu14.04.1                          amd64        Tool for configuring the NVIDIA graphics driver
10:37:23 ~ 
$ lspci -nnk | grep "VGA\|'Kern'\|3D\|Display" -A2
00:02.0 VGA compatible controller [0300]: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller [8086:0416] (rev 06)
    Subsystem: Lenovo Device [17aa:2211]
    Kernel driver in use: i915
--
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK106GLM [Quadro K2100M] [10de:11fc] (rev a1)
    Subsystem: Lenovo Device [17aa:2211]
    Kernel driver in use: nouveau
10:37:32 ~ 
$ 

ベストアンサー1

グラフィックカードとグラフィックドライバのバージョンは何ですか? GTX 770のLinuxで4kを実行できない場合は、コマンドをxorg-edgers使用してPPAを追加し、sudo add-apt-repository ppa:xorg-edgers/ppa最新のNvidiaドライバをインストールしてからGUIから正しい表示オプションを選択するだけです。したがって、他のことを試す前にグラフィックドライバを更新することをお勧めします。

編集:より具体的には、このコマンドを使用してsudo apt install nvidia-current最新のNvidiaドライバをインストールしたり、特定のバージョンのドライバを使用しapt search nvidia-てインストールしたりできます。sudo apt install nvidia-XXX

また、ドライバをインストールするためにNvidiaのウェブサイトに行かないでください!

おすすめ記事