Resize Ghidra for High DPI screens
If you run Ghidra on a high DPI screen, you will probably find the GUI to be scaled down so small to be almost of no use.
There is a setting that you can adjust to scale the Ghidra GUI:
in $GHIDRA_ROOT/support
is a file named launch.properties. In this launch.properties file is the following configuration key:
VMARGS_LINUX=-Dsun.java2d.uiScale=1
Change this line to:
VMARGS_LINUX=-Dsun.java2d.uiScale=2
Then launch ghidra and you should be good to go!
中文版:
到$GHIDRA_ROOT/support
路径,找到launch.properties
文件打开,
修改VMARGS_LINUX=-Dsun.java2d.uiScale=1
为VMARGS_LINUX=-Dsun.java2d.uiScale=2
注意:
$GHIDRA_ROOT/support
这个路径是ghidra的安装路径下的support文件夹,可能是/opt/ghidra/support
或者是其他路径(不同的发行版,具体的安装位置可能不同,参考linux中软件安装目录)
参考
https://gist.github.com/nstarke/baa031e0cab64a608c9bd77d73c50fc6 | Resize Ghidra for High DPI screens
标签:缩放,support,launch,java2d,UI,VMARGS,uiScale,ghidra From: https://www.cnblogs.com/mindreamaster/p/17538618.html