远程访问 Ubuntu 服务器时使用 GUI
是否可以使用安装在另一台计算机上的 GUI(gnome)来显示服务器的内容,有点像远程连接,但服务器本身没有安装桌面管理器?
Is it possible to use a GUI (gnome) that is installed on another machine to display the contents of a server, kind of like a remote connection but the server itself does not have a desktop manager installed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果要运行基于 gnome 的应用程序,执行代码的机器必须具有依赖库(libgnome、libgtk 等)。如果您使用 yum、apt 或类似软件,请安装该应用程序并祈祷最小的依赖地狱。
如果您想在客户端上使用 Gnome 来显示服务器的内容,那么您就不走运了。您能做的最好的努力就是使用远程文件共享(sftp、nfs 等)。
根据我自己的经验,我建议在服务器上安装软件并使用远程连接,例如远程 X11、VLC 或 NoMachine。
If you want to run a gnome-based app, the machine that executes the code must have the dependency libs (libgnome, libgtk, etc). If you are using yum, apt or similar, install the application and pray for a minimal dependency hell.
If you want to use a Gnome on a client to show server's contents, you are out of luck. The best effort you can do is use a remote file sharing (sftp, nfs, etc).
What I recommend from my own experience is install the software on server and use a remote connection, like remote X11, VLC or NoMachine.
您可以使用sshfs在客户端计算机上安装服务器目录并使用窗口管理器浏览它。
您还可以在客户端上安装X Window服务器并使用带选项-X的ssh,这样您就可以开始客户端计算机上安装的所有图形应用程序都安装在服务器上。
You can use sshfs to mount servers directory on your client computer and browse it with your window manager.
You can also install X Window server on client and use ssh with option -X, so you can start on client computer all graphical applications installed on server.