Install PlantUML without GUI












2















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?










share|improve this question























  • 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 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
















2















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?










share|improve this question























  • 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 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














2












2








2








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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



















  • 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 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

















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










1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    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.






    share|improve this answer




























      0














      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.






      share|improve this answer


























        0












        0








        0







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 10 at 19:57









        kenorbkenorb

        4,62014054




        4,62014054






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

            Mangá

             ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕