0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GUI版Linuxをテレビの解像度にピッタリ合わせてみた

Last updated at Posted at 2025-06-23

GUI版Linuxノートパソコンの解像度と、ジモティーで買ったAQUOSテレビの解像度があってない。HDMIでテレビに投影すると、映像が見切れたり、黒い部分が出たりでうまく映らない。Linuxの設定に解像度を追加してみた。

テレビの解像度を知る

機番はだいたい裏にかいてありますよね。
LC-32E8という機番でGoogle検索。公式HPを見たところ、画素数は1366×768とある。

Screenshot From 2025-06-23 20-20-24.png

ディスプレイ設定に新たな解像度を追加

コマンド①
xrandr

とりあえず上記コマンドで設定がないことを確認しましょう。

コマンド①結果
   1920x1080     60.00*+  59.97    59.96    59.93    40.01  
   1680x1050     59.95    59.88  
   1400x1050     59.98  
   1600x900      59.99    59.94    59.95    59.82  
   1280x1024     60.02  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      60.00    59.97   
   1280x800      59.99    59.97    59.81    59.91  
   1280x720      60.00    59.99    59.86    59.74  
   1024x768      60.04    60.00  
   960x720       60.00  
   928x696       60.05  
   896x672       60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   960x540       59.96    59.99    59.63    59.82  
   800x600       60.00    60.32    56.25  
   840x525       60.01    59.88  
   864x486       59.92    59.57  
   700x525       59.98  
   800x450       59.95    59.82  
   640x512       60.02  
   700x450       59.96    59.88  
   640x480       60.00    59.94  
   720x405       59.51    58.99  
   684x384       59.88    59.85  
   640x400       59.88    59.98  
   640x360       59.86    59.83    59.84    59.32  
   512x384       60.00  
   512x288       60.00    59.92  
   480x270       59.63    59.82  
   400x300       60.32    56.34  
   432x243       59.92    59.57  
   320x240       60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  

なさそうです。

コマンド②
xrandr --newmode "1366x768-0" 75.61  1366 1406 1438 1574  768 771 777 800 -hsync -vsync

Steps to add a new resolution 1366x768
コマンド②を実施。細かい後ろのパラメータは最大解像度等らしく。
Linux Mate用の解像度のようです。

コマンド③
xrandr --addmode HDMI-1 "1366x768-0"   
xrandr --output HDMI-1 --mode "1360x768" 

コマンド③を実施。
なぜか最後のコマンドは解像度1366でなく1360なんですね。

Screenshot From 2025-06-23 20-48-15.png

できました!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?