Disable laptop screen and use only VGA

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












I have an old laptop with a faulty screen (The screen works in random intervals). Recently I bought a screen and I thought I can use my old laptop as a media centre.



Can I disable completely my laptop's screen? I have done this for my user, but I don't know how to do this systemwise. I have installed debian stretch with th default desktop environment.







share|improve this question




















  • What is the output of xrandr -q? you can edit here
    – GAD3R
    Oct 22 '17 at 15:48







  • 1




    Often old laptops are easier to open. I would disconnect the flat cable going to the screen, probably lower power usage too if you do that.
    – Rui F Ribeiro
    Oct 22 '17 at 16:05











  • There may be an option in the BIOS to output only to external screen
    – fpmurphy1
    Oct 24 '17 at 11:55














up vote
1
down vote

favorite












I have an old laptop with a faulty screen (The screen works in random intervals). Recently I bought a screen and I thought I can use my old laptop as a media centre.



Can I disable completely my laptop's screen? I have done this for my user, but I don't know how to do this systemwise. I have installed debian stretch with th default desktop environment.







share|improve this question




















  • What is the output of xrandr -q? you can edit here
    – GAD3R
    Oct 22 '17 at 15:48







  • 1




    Often old laptops are easier to open. I would disconnect the flat cable going to the screen, probably lower power usage too if you do that.
    – Rui F Ribeiro
    Oct 22 '17 at 16:05











  • There may be an option in the BIOS to output only to external screen
    – fpmurphy1
    Oct 24 '17 at 11:55












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have an old laptop with a faulty screen (The screen works in random intervals). Recently I bought a screen and I thought I can use my old laptop as a media centre.



Can I disable completely my laptop's screen? I have done this for my user, but I don't know how to do this systemwise. I have installed debian stretch with th default desktop environment.







share|improve this question












I have an old laptop with a faulty screen (The screen works in random intervals). Recently I bought a screen and I thought I can use my old laptop as a media centre.



Can I disable completely my laptop's screen? I have done this for my user, but I don't know how to do this systemwise. I have installed debian stretch with th default desktop environment.









share|improve this question











share|improve this question




share|improve this question










asked Oct 22 '17 at 15:34









tst

1233




1233











  • What is the output of xrandr -q? you can edit here
    – GAD3R
    Oct 22 '17 at 15:48







  • 1




    Often old laptops are easier to open. I would disconnect the flat cable going to the screen, probably lower power usage too if you do that.
    – Rui F Ribeiro
    Oct 22 '17 at 16:05











  • There may be an option in the BIOS to output only to external screen
    – fpmurphy1
    Oct 24 '17 at 11:55
















  • What is the output of xrandr -q? you can edit here
    – GAD3R
    Oct 22 '17 at 15:48







  • 1




    Often old laptops are easier to open. I would disconnect the flat cable going to the screen, probably lower power usage too if you do that.
    – Rui F Ribeiro
    Oct 22 '17 at 16:05











  • There may be an option in the BIOS to output only to external screen
    – fpmurphy1
    Oct 24 '17 at 11:55















What is the output of xrandr -q? you can edit here
– GAD3R
Oct 22 '17 at 15:48





What is the output of xrandr -q? you can edit here
– GAD3R
Oct 22 '17 at 15:48





1




1




Often old laptops are easier to open. I would disconnect the flat cable going to the screen, probably lower power usage too if you do that.
– Rui F Ribeiro
Oct 22 '17 at 16:05





Often old laptops are easier to open. I would disconnect the flat cable going to the screen, probably lower power usage too if you do that.
– Rui F Ribeiro
Oct 22 '17 at 16:05













There may be an option in the BIOS to output only to external screen
– fpmurphy1
Oct 24 '17 at 11:55




There may be an option in the BIOS to output only to external screen
– fpmurphy1
Oct 24 '17 at 11:55










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










Run the command xrandr -q to shows the exact names.



xrandr -q | grep 'VGA|HDMI|DP|LVDS'


This is a sample command to turn off LVDS-1 and enable VGA-1:



xrandr --output LVDS-1 --off --output VGA-1 --auto


To switch back:



xrandr --output VGA-1 --off --output LVDS-1 --auto





share|improve this answer






















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    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',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f399739%2fdisable-laptop-screen-and-use-only-vga%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    Run the command xrandr -q to shows the exact names.



    xrandr -q | grep 'VGA|HDMI|DP|LVDS'


    This is a sample command to turn off LVDS-1 and enable VGA-1:



    xrandr --output LVDS-1 --off --output VGA-1 --auto


    To switch back:



    xrandr --output VGA-1 --off --output LVDS-1 --auto





    share|improve this answer


























      up vote
      1
      down vote



      accepted










      Run the command xrandr -q to shows the exact names.



      xrandr -q | grep 'VGA|HDMI|DP|LVDS'


      This is a sample command to turn off LVDS-1 and enable VGA-1:



      xrandr --output LVDS-1 --off --output VGA-1 --auto


      To switch back:



      xrandr --output VGA-1 --off --output LVDS-1 --auto





      share|improve this answer
























        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        Run the command xrandr -q to shows the exact names.



        xrandr -q | grep 'VGA|HDMI|DP|LVDS'


        This is a sample command to turn off LVDS-1 and enable VGA-1:



        xrandr --output LVDS-1 --off --output VGA-1 --auto


        To switch back:



        xrandr --output VGA-1 --off --output LVDS-1 --auto





        share|improve this answer














        Run the command xrandr -q to shows the exact names.



        xrandr -q | grep 'VGA|HDMI|DP|LVDS'


        This is a sample command to turn off LVDS-1 and enable VGA-1:



        xrandr --output LVDS-1 --off --output VGA-1 --auto


        To switch back:



        xrandr --output VGA-1 --off --output LVDS-1 --auto






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Oct 24 '17 at 6:45

























        answered Oct 22 '17 at 16:09









        GAD3R

        22.7k154895




        22.7k154895



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f399739%2fdisable-laptop-screen-and-use-only-vga%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            Peggy Mitchell

            Palaiologos

            The Forum (Inglewood, California)