连接到VNC客户端时如何提高最新Raspbian Pixel的分辨率?


19

我在Raspberry Pi 3的sdcard上下载了Raspbian Pixel的最新图像并下载了最新图像。我从菜单>首选项> Raspberry Pi配置中激活了VNC界面。Raspberry Pi已连接到wifi,我可以使用VNC Viewer应用程序在iPad mini上访问它。也没有HDMI连接到Pi。

现在的问题是,我只能得到656x416的分辨率,该分辨率对于执行任务而言太小了。由于我没有使用终端手动编辑任何文件,因此我不知道如何增加它。我想我需要编辑vnc文件并传递参数。请帮助我解决问题。

Answers:


21

找到一个修复程序,编辑/boot/config.txt

启用以下配置:

framebuffer_width=1280
framebuffer_height=720

注意-在某些版本的Pixel上,您可能需要创建此文件,因为该文件可能不存在。例如,使用Kali Linux版本时,此文件不存在,但在重新启动后创建后就可用于无头实现。


15

在桌面菜单中,转到“首选项”>“ Raspberry Pi配置”,然后单击“设置分辨率”按钮。或者,从终端运行sudo raspi-config并选择“高级选项”>“分辨率”。

如果连接了显示器,它将显示该显示器支持的模式列表。如果您没有连接显示器,它将显示最常用模式的列表。

如果你想未列出的模式,您将需要编辑/boot/config.txt如下所述: https://www.raspberrypi.org/documentation/configuration/config-txt/video.md

您需要重新启动Pi才能使新模式生效。


2

增加配置文件中的帧缓冲区:

sudo nano /boot/config.txt

通过取消注释以下行:

framebuffer_width=1280
framebuffer_height=720

然后

sudo reboot

3
这和来自Karanvir的答案是一样的吗?
Piotr Kula's
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.