bash:run_graphical_linux_applications
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
bash:run_graphical_linux_applications [2020/07/15 09:30] – external edit 127.0.0.1 | bash:run_graphical_linux_applications [2021/02/04 13:28] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Run graphical Linux applications ====== | ||
- | |||
- | To have BASH run graphical apps a X server is needed. | ||
- | |||
- | This is basically the same technique people would use to run graphical Linux desktop applications over a network. | ||
- | |||
- | ---- | ||
- | |||
- | ===== Install an X server ===== | ||
- | |||
- | |||
- | The [[https:// | ||
- | |||
- | Download and install it on your Windows 10 PC to get started. | ||
- | |||
- | You can just use the default settings and it’ll work fine. | ||
- | |||
- | Launch Xming and it will appear in your system tray, running in the background and waiting for you to launch a graphical Linux program. | ||
- | |||
- | ---- | ||
- | |||
- | ==== Launch applications from Ubuntu’s Bash shell ==== | ||
- | |||
- | Install a graphical app. For example, the Linux version of Firefox from Ubuntu’s repositories: | ||
- | |||
- | <code bash> | ||
- | sudo apt install firefox | ||
- | </ | ||
- | |||
- | Once you’ve installed the program, you can specify the X server and then launch the application. | ||
- | |||
- | For example, to launch Firefox, run the below commands. (To launch another graphical application, | ||
- | |||
- | <code bash> | ||
- | export DISPLAY=:0 | ||
- | |||
- | firefox | ||
- | </ | ||
- | |||
- | Assuming you’re running an X server like Xming on your Windows PC, the graphical application should run. | ||
- | |||
- | It may not run as speedily—applications can’t use direct rendering to run on your hardware directly. | ||
- | |||
bash/run_graphical_linux_applications.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1