Display a graphical web page on Ubuntu ServerHow to start firefox in fullscreen mode?What is the X server?X server display configuration page will not loadis ubuntu phone (or tablet) use X for display server?multiple screens support in X serverCould not open X display giggle: Cannot open displayChange CTRL+ALT+BACKSPACE to restart X serverHow can Ubuntu 18.04 be configured to use X instead of Wayland?how to get DISPLAY variable at the ubuntu login screen?
Dice game with rules and three dice
Signed overflow in C++ and undefined behaviour (UB)
Find the length of a number's "base-jumping" path
Frictional force doesn't depend on surface area, but why does this application work?
How to (or should one) distinguish between lowercase and uppercase alphabets orally when lecturing?
What is the purpose of the Dash 8’s “TOUCHED RUNWAY” warning light?
Give a grammar for a language on Σ=a,b,c that accepts all strings containing exactly one a
how to get a list of folders and number files in each folder side by side, in the current directory?
Is there a conflict between YAGNI and SRP?
How does a Mandalorian eat food if he never takes his helmet off?
Why only sine waves?
Sold item on eBay, buyer wants it to be delivered to another country, and pay by bank transfer
How to use stat or bash to check whether FILENAME refers to a file
Color coding Alerts
Possible way to counter or sidestep split-second spells (like Trickbind) in a particular situation
How are names of enharmonic notes determined?
How to verify router firmware is legit?
My code seems to be a train wreck
Should high school teachers say “real numbers” before teaching complex numbers?
How to negate forall?
Character Development - Robert Baratheon
If thermodynamics says entropy always increases, how can the universe end in heat death?
Why is the sample variance of a Sample Average Approximation calculated in this way?
Selecting Primes from list of list
Display a graphical web page on Ubuntu Server
How to start firefox in fullscreen mode?What is the X server?X server display configuration page will not loadis ubuntu phone (or tablet) use X for display server?multiple screens support in X serverCould not open X display giggle: Cannot open displayChange CTRL+ALT+BACKSPACE to restart X serverHow can Ubuntu 18.04 be configured to use X instead of Wayland?how to get DISPLAY variable at the ubuntu login screen?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I have a raspberry pi running Ubuntu Server connected to a large display that needs to display a webpage containing HTML and CSS to show information is the lobby at my workplace.
If possible, I would like to have the webpage run in a browser like chromium in a basic x session, no proper desktop environment or anything.
Here’s what I’ve tried:
Installing xorg and Openbox, which worked, but I’d prefer to not have to run the browser in a window manager/desktop environment, if possible.
In a nutshell, I need to run a single graphical web browser full screen in a basic x session.
xorg xserver
add a comment
|
I have a raspberry pi running Ubuntu Server connected to a large display that needs to display a webpage containing HTML and CSS to show information is the lobby at my workplace.
If possible, I would like to have the webpage run in a browser like chromium in a basic x session, no proper desktop environment or anything.
Here’s what I’ve tried:
Installing xorg and Openbox, which worked, but I’d prefer to not have to run the browser in a window manager/desktop environment, if possible.
In a nutshell, I need to run a single graphical web browser full screen in a basic x session.
xorg xserver
add a comment
|
I have a raspberry pi running Ubuntu Server connected to a large display that needs to display a webpage containing HTML and CSS to show information is the lobby at my workplace.
If possible, I would like to have the webpage run in a browser like chromium in a basic x session, no proper desktop environment or anything.
Here’s what I’ve tried:
Installing xorg and Openbox, which worked, but I’d prefer to not have to run the browser in a window manager/desktop environment, if possible.
In a nutshell, I need to run a single graphical web browser full screen in a basic x session.
xorg xserver
I have a raspberry pi running Ubuntu Server connected to a large display that needs to display a webpage containing HTML and CSS to show information is the lobby at my workplace.
If possible, I would like to have the webpage run in a browser like chromium in a basic x session, no proper desktop environment or anything.
Here’s what I’ve tried:
Installing xorg and Openbox, which worked, but I’d prefer to not have to run the browser in a window manager/desktop environment, if possible.
In a nutshell, I need to run a single graphical web browser full screen in a basic x session.
xorg xserver
xorg xserver
asked Sep 20 at 23:17
Some Guy With CatsSome Guy With Cats
3081 silver badge9 bronze badges
3081 silver badge9 bronze badges
add a comment
|
add a comment
|
3 Answers
3
active
oldest
votes
You can combine two options to do this.
- You can directly launching a program (e.g. Firefox, Chrome) from terminal by passing it as a parameter to
startx - You can use the Kiosk mode of a browser that supports it (Chrome?) Or the full screen mode of any browser, where you set the default home page to the URL that you want to show.
See for more help:
- How to start firefox in fullscreen mode?
- https://superuser.com/questions/219511/browser-instead-of-window-manager
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
I found the answer to my question:
To do this, we will run Chromium in Kiosk mode.
First, install chromium and xorg:
sudo apt update
sudo apt install chromium-browser xorg
Now, you can start Chromium in kiosk mode with this command:
startx /usr/bin/chromium-browser —-kiosk <website>
You would replace “website” with the website you would like to visit. To exit kiosk mode, do alt+f4.
add a comment
|
Here suggests it's doable. However, it would also depend on what your web page requires. Is it simple HTML+CSS? Then you don't even need the heavyweight Chromium and can use a lighter browser such as Midori Falkon Min (reviewed) or a few others.
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
1
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1175584%2fdisplay-a-graphical-web-page-on-ubuntu-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can combine two options to do this.
- You can directly launching a program (e.g. Firefox, Chrome) from terminal by passing it as a parameter to
startx - You can use the Kiosk mode of a browser that supports it (Chrome?) Or the full screen mode of any browser, where you set the default home page to the URL that you want to show.
See for more help:
- How to start firefox in fullscreen mode?
- https://superuser.com/questions/219511/browser-instead-of-window-manager
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
You can combine two options to do this.
- You can directly launching a program (e.g. Firefox, Chrome) from terminal by passing it as a parameter to
startx - You can use the Kiosk mode of a browser that supports it (Chrome?) Or the full screen mode of any browser, where you set the default home page to the URL that you want to show.
See for more help:
- How to start firefox in fullscreen mode?
- https://superuser.com/questions/219511/browser-instead-of-window-manager
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
You can combine two options to do this.
- You can directly launching a program (e.g. Firefox, Chrome) from terminal by passing it as a parameter to
startx - You can use the Kiosk mode of a browser that supports it (Chrome?) Or the full screen mode of any browser, where you set the default home page to the URL that you want to show.
See for more help:
- How to start firefox in fullscreen mode?
- https://superuser.com/questions/219511/browser-instead-of-window-manager
You can combine two options to do this.
- You can directly launching a program (e.g. Firefox, Chrome) from terminal by passing it as a parameter to
startx - You can use the Kiosk mode of a browser that supports it (Chrome?) Or the full screen mode of any browser, where you set the default home page to the URL that you want to show.
See for more help:
- How to start firefox in fullscreen mode?
- https://superuser.com/questions/219511/browser-instead-of-window-manager
edited Sep 21 at 4:34
Pablo A
4,6233 gold badges24 silver badges50 bronze badges
4,6233 gold badges24 silver badges50 bronze badges
answered Sep 20 at 23:48
xrplorerxrplorer
791 bronze badge
791 bronze badge
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
How would I pass Chrome as a parameter with startx? Would I need to install anything more than xorg?
– Some Guy With Cats
Sep 21 at 1:05
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I found this that describes how to start chrome in kiosk mode: superuser.com/questions/219511/…. I’m testing it with Chromium now.
– Some Guy With Cats
Sep 21 at 1:22
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
I found the answer to my question:
To do this, we will run Chromium in Kiosk mode.
First, install chromium and xorg:
sudo apt update
sudo apt install chromium-browser xorg
Now, you can start Chromium in kiosk mode with this command:
startx /usr/bin/chromium-browser —-kiosk <website>
You would replace “website” with the website you would like to visit. To exit kiosk mode, do alt+f4.
add a comment
|
I found the answer to my question:
To do this, we will run Chromium in Kiosk mode.
First, install chromium and xorg:
sudo apt update
sudo apt install chromium-browser xorg
Now, you can start Chromium in kiosk mode with this command:
startx /usr/bin/chromium-browser —-kiosk <website>
You would replace “website” with the website you would like to visit. To exit kiosk mode, do alt+f4.
add a comment
|
I found the answer to my question:
To do this, we will run Chromium in Kiosk mode.
First, install chromium and xorg:
sudo apt update
sudo apt install chromium-browser xorg
Now, you can start Chromium in kiosk mode with this command:
startx /usr/bin/chromium-browser —-kiosk <website>
You would replace “website” with the website you would like to visit. To exit kiosk mode, do alt+f4.
I found the answer to my question:
To do this, we will run Chromium in Kiosk mode.
First, install chromium and xorg:
sudo apt update
sudo apt install chromium-browser xorg
Now, you can start Chromium in kiosk mode with this command:
startx /usr/bin/chromium-browser —-kiosk <website>
You would replace “website” with the website you would like to visit. To exit kiosk mode, do alt+f4.
edited Sep 21 at 3:42
answered Sep 21 at 1:41
Some Guy With CatsSome Guy With Cats
3081 silver badge9 bronze badges
3081 silver badge9 bronze badges
add a comment
|
add a comment
|
Here suggests it's doable. However, it would also depend on what your web page requires. Is it simple HTML+CSS? Then you don't even need the heavyweight Chromium and can use a lighter browser such as Midori Falkon Min (reviewed) or a few others.
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
1
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
Here suggests it's doable. However, it would also depend on what your web page requires. Is it simple HTML+CSS? Then you don't even need the heavyweight Chromium and can use a lighter browser such as Midori Falkon Min (reviewed) or a few others.
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
1
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
Here suggests it's doable. However, it would also depend on what your web page requires. Is it simple HTML+CSS? Then you don't even need the heavyweight Chromium and can use a lighter browser such as Midori Falkon Min (reviewed) or a few others.
Here suggests it's doable. However, it would also depend on what your web page requires. Is it simple HTML+CSS? Then you don't even need the heavyweight Chromium and can use a lighter browser such as Midori Falkon Min (reviewed) or a few others.
edited Sep 21 at 4:34
Pablo A
4,6233 gold badges24 silver badges50 bronze badges
4,6233 gold badges24 silver badges50 bronze badges
answered Sep 20 at 23:42
K7AAYK7AAY
7,8475 gold badges22 silver badges52 bronze badges
7,8475 gold badges22 silver badges52 bronze badges
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
1
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
1
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
There will be embedded html5 video, so it will probably have to be chromium.
– Some Guy With Cats
Sep 21 at 1:06
1
1
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
I got it working with Chromium kiosk mode. I submitted an answer and I will mark it correct in 48 hours, when it will let me do that.
– Some Guy With Cats
Sep 21 at 1:48
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1175584%2fdisplay-a-graphical-web-page-on-ubuntu-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown