How to find /usr/bin/gedit? [duplicate]





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0
















This question already has an answer here:




  • How do you find the directory of a command? [duplicate]

    2 answers




I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?










share|improve this question







New contributor




Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

























    0
















    This question already has an answer here:




    • How do you find the directory of a command? [duplicate]

      2 answers




    I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?










    share|improve this question







    New contributor




    Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.











    marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.





















      0












      0








      0









      This question already has an answer here:




      • How do you find the directory of a command? [duplicate]

        2 answers




      I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?










      share|improve this question







      New contributor




      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.













      This question already has an answer here:




      • How do you find the directory of a command? [duplicate]

        2 answers




      I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?





      This question already has an answer here:




      • How do you find the directory of a command? [duplicate]

        2 answers








      gedit






      share|improve this question







      New contributor




      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 15 hours ago









      Nigel NgNigel Ng

      1




      1




      New contributor




      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Nigel Ng is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









      marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Use whereis to locate the binary, source, and manual page files for a command



          $ whereis gedit
          gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz





          share|improve this answer































            0














            For search files and directories use:



            find / -name gedit


            Just for searching directories:



            find / -name gedit -type d


            Source:
            General Command Manual FIND



            Other example applying this command find ...
            that end with the characters "test":



            find /home/enduser/ -name "*test"


            or that begin with the characters"ged":



            find / -name "ged*"


            Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.



            Hope this helps.






            share|improve this answer






























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              Use whereis to locate the binary, source, and manual page files for a command



              $ whereis gedit
              gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz





              share|improve this answer




























                0














                Use whereis to locate the binary, source, and manual page files for a command



                $ whereis gedit
                gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz





                share|improve this answer


























                  0












                  0








                  0







                  Use whereis to locate the binary, source, and manual page files for a command



                  $ whereis gedit
                  gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz





                  share|improve this answer













                  Use whereis to locate the binary, source, and manual page files for a command



                  $ whereis gedit
                  gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 15 hours ago









                  MikeMike

                  2,88682250




                  2,88682250

























                      0














                      For search files and directories use:



                      find / -name gedit


                      Just for searching directories:



                      find / -name gedit -type d


                      Source:
                      General Command Manual FIND



                      Other example applying this command find ...
                      that end with the characters "test":



                      find /home/enduser/ -name "*test"


                      or that begin with the characters"ged":



                      find / -name "ged*"


                      Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.



                      Hope this helps.






                      share|improve this answer




























                        0














                        For search files and directories use:



                        find / -name gedit


                        Just for searching directories:



                        find / -name gedit -type d


                        Source:
                        General Command Manual FIND



                        Other example applying this command find ...
                        that end with the characters "test":



                        find /home/enduser/ -name "*test"


                        or that begin with the characters"ged":



                        find / -name "ged*"


                        Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.



                        Hope this helps.






                        share|improve this answer


























                          0












                          0








                          0







                          For search files and directories use:



                          find / -name gedit


                          Just for searching directories:



                          find / -name gedit -type d


                          Source:
                          General Command Manual FIND



                          Other example applying this command find ...
                          that end with the characters "test":



                          find /home/enduser/ -name "*test"


                          or that begin with the characters"ged":



                          find / -name "ged*"


                          Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.



                          Hope this helps.






                          share|improve this answer













                          For search files and directories use:



                          find / -name gedit


                          Just for searching directories:



                          find / -name gedit -type d


                          Source:
                          General Command Manual FIND



                          Other example applying this command find ...
                          that end with the characters "test":



                          find /home/enduser/ -name "*test"


                          or that begin with the characters"ged":



                          find / -name "ged*"


                          Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.



                          Hope this helps.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 13 hours ago









                          GamalielGamaliel

                          312




                          312















                              Popular posts from this blog

                              GameSpot

                              connect to host localhost port 22: Connection refused

                              Getting a Wifi WPA2 wifi connection