Install PlantUML without GUI
I want to install PlantUML in a Docker container. I tried this:
apt install plantuml
This depends on a full X11 and GTK installation, but I only want to use the command line tool, so I don't want to install unnecessary packages, as it considerably increases image size. Is there any way to install PlantUML without GUI?
apt docker
add a comment |
I want to install PlantUML in a Docker container. I tried this:
apt install plantuml
This depends on a full X11 and GTK installation, but I only want to use the command line tool, so I don't want to install unnecessary packages, as it considerably increases image size. Is there any way to install PlantUML without GUI?
apt docker
plantuml is a jar file so download that and put it somewhere on your system: for instance from sourceforge.net/projects/plantuml/files/plantuml.jar/download
– Rinzwind
Feb 15 '18 at 14:06
1
Actually it doesn't depend on a full X11 and GTK install.plantuml
depends ondefault-jre
!
– Robert Riedl
Feb 15 '18 at 16:50
@RobertRiedl Then the Ubuntu dependency tree is seriously broken.
– petersohn
Feb 16 '18 at 8:54
add a comment |
I want to install PlantUML in a Docker container. I tried this:
apt install plantuml
This depends on a full X11 and GTK installation, but I only want to use the command line tool, so I don't want to install unnecessary packages, as it considerably increases image size. Is there any way to install PlantUML without GUI?
apt docker
I want to install PlantUML in a Docker container. I tried this:
apt install plantuml
This depends on a full X11 and GTK installation, but I only want to use the command line tool, so I don't want to install unnecessary packages, as it considerably increases image size. Is there any way to install PlantUML without GUI?
apt docker
apt docker
asked Feb 15 '18 at 13:59
petersohnpetersohn
36427
36427
plantuml is a jar file so download that and put it somewhere on your system: for instance from sourceforge.net/projects/plantuml/files/plantuml.jar/download
– Rinzwind
Feb 15 '18 at 14:06
1
Actually it doesn't depend on a full X11 and GTK install.plantuml
depends ondefault-jre
!
– Robert Riedl
Feb 15 '18 at 16:50
@RobertRiedl Then the Ubuntu dependency tree is seriously broken.
– petersohn
Feb 16 '18 at 8:54
add a comment |
plantuml is a jar file so download that and put it somewhere on your system: for instance from sourceforge.net/projects/plantuml/files/plantuml.jar/download
– Rinzwind
Feb 15 '18 at 14:06
1
Actually it doesn't depend on a full X11 and GTK install.plantuml
depends ondefault-jre
!
– Robert Riedl
Feb 15 '18 at 16:50
@RobertRiedl Then the Ubuntu dependency tree is seriously broken.
– petersohn
Feb 16 '18 at 8:54
plantuml is a jar file so download that and put it somewhere on your system: for instance from sourceforge.net/projects/plantuml/files/plantuml.jar/download
– Rinzwind
Feb 15 '18 at 14:06
plantuml is a jar file so download that and put it somewhere on your system: for instance from sourceforge.net/projects/plantuml/files/plantuml.jar/download
– Rinzwind
Feb 15 '18 at 14:06
1
1
Actually it doesn't depend on a full X11 and GTK install.
plantuml
depends on default-jre
!– Robert Riedl
Feb 15 '18 at 16:50
Actually it doesn't depend on a full X11 and GTK install.
plantuml
depends on default-jre
!– Robert Riedl
Feb 15 '18 at 16:50
@RobertRiedl Then the Ubuntu dependency tree is seriously broken.
– petersohn
Feb 16 '18 at 8:54
@RobertRiedl Then the Ubuntu dependency tree is seriously broken.
– petersohn
Feb 16 '18 at 8:54
add a comment |
1 Answer
1
active
oldest
votes
By default, you must have X11 libraries installed. See: Installation notes. Otherwise check how to use Headless Mode in the Java SE Platform.
I think the best is to install X virtual framebuffer, which can performs all graphical operations in virtual memory without showing any screen output.
You can install it by:
sudo apt-get install Xvfb
Then run by:
Xvfb :0 -screen 0 1024x768x16 &
Then to specify which display to use, you need to export DISPLAY
, e.g.
export DISPLAY=:0.0 # Select screen 0.
Then you can run plantuml
to use that display.
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/3.0/"u003ecc by-sa 3.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%2f1006481%2finstall-plantuml-without-gui%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
By default, you must have X11 libraries installed. See: Installation notes. Otherwise check how to use Headless Mode in the Java SE Platform.
I think the best is to install X virtual framebuffer, which can performs all graphical operations in virtual memory without showing any screen output.
You can install it by:
sudo apt-get install Xvfb
Then run by:
Xvfb :0 -screen 0 1024x768x16 &
Then to specify which display to use, you need to export DISPLAY
, e.g.
export DISPLAY=:0.0 # Select screen 0.
Then you can run plantuml
to use that display.
add a comment |
By default, you must have X11 libraries installed. See: Installation notes. Otherwise check how to use Headless Mode in the Java SE Platform.
I think the best is to install X virtual framebuffer, which can performs all graphical operations in virtual memory without showing any screen output.
You can install it by:
sudo apt-get install Xvfb
Then run by:
Xvfb :0 -screen 0 1024x768x16 &
Then to specify which display to use, you need to export DISPLAY
, e.g.
export DISPLAY=:0.0 # Select screen 0.
Then you can run plantuml
to use that display.
add a comment |
By default, you must have X11 libraries installed. See: Installation notes. Otherwise check how to use Headless Mode in the Java SE Platform.
I think the best is to install X virtual framebuffer, which can performs all graphical operations in virtual memory without showing any screen output.
You can install it by:
sudo apt-get install Xvfb
Then run by:
Xvfb :0 -screen 0 1024x768x16 &
Then to specify which display to use, you need to export DISPLAY
, e.g.
export DISPLAY=:0.0 # Select screen 0.
Then you can run plantuml
to use that display.
By default, you must have X11 libraries installed. See: Installation notes. Otherwise check how to use Headless Mode in the Java SE Platform.
I think the best is to install X virtual framebuffer, which can performs all graphical operations in virtual memory without showing any screen output.
You can install it by:
sudo apt-get install Xvfb
Then run by:
Xvfb :0 -screen 0 1024x768x16 &
Then to specify which display to use, you need to export DISPLAY
, e.g.
export DISPLAY=:0.0 # Select screen 0.
Then you can run plantuml
to use that display.
answered Feb 10 at 19:57
kenorbkenorb
4,62014054
4,62014054
add a comment |
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%2f1006481%2finstall-plantuml-without-gui%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
plantuml is a jar file so download that and put it somewhere on your system: for instance from sourceforge.net/projects/plantuml/files/plantuml.jar/download
– Rinzwind
Feb 15 '18 at 14:06
1
Actually it doesn't depend on a full X11 and GTK install.
plantuml
depends ondefault-jre
!– Robert Riedl
Feb 15 '18 at 16:50
@RobertRiedl Then the Ubuntu dependency tree is seriously broken.
– petersohn
Feb 16 '18 at 8:54