Is there a way to check if a specific snap is running (from the CLI)?












0















Let's say I've launched the Nextcloud Client, but I haven't seen the icon show up in the panel (Gnome Shell is finicky that way). How do I check to see if it is running (from the CLI)?



Is there a one-shot command for this?




(Please do not suggest using the system monitor, I know you can do
that. But it requires that you check the properties of the running
process to determine if it is a snap or not).







snap info is not an option for GUI programs, as it only tells you
about services (for instance: wekan, or nextcloud-server).











share|improve this question





























    0















    Let's say I've launched the Nextcloud Client, but I haven't seen the icon show up in the panel (Gnome Shell is finicky that way). How do I check to see if it is running (from the CLI)?



    Is there a one-shot command for this?




    (Please do not suggest using the system monitor, I know you can do
    that. But it requires that you check the properties of the running
    process to determine if it is a snap or not).







    snap info is not an option for GUI programs, as it only tells you
    about services (for instance: wekan, or nextcloud-server).











    share|improve this question



























      0












      0








      0








      Let's say I've launched the Nextcloud Client, but I haven't seen the icon show up in the panel (Gnome Shell is finicky that way). How do I check to see if it is running (from the CLI)?



      Is there a one-shot command for this?




      (Please do not suggest using the system monitor, I know you can do
      that. But it requires that you check the properties of the running
      process to determine if it is a snap or not).







      snap info is not an option for GUI programs, as it only tells you
      about services (for instance: wekan, or nextcloud-server).











      share|improve this question
















      Let's say I've launched the Nextcloud Client, but I haven't seen the icon show up in the panel (Gnome Shell is finicky that way). How do I check to see if it is running (from the CLI)?



      Is there a one-shot command for this?




      (Please do not suggest using the system monitor, I know you can do
      that. But it requires that you check the properties of the running
      process to determine if it is a snap or not).







      snap info is not an option for GUI programs, as it only tells you
      about services (for instance: wekan, or nextcloud-server).








      command-line snap process






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 3 hours ago







      RolandiXor

















      asked 3 hours ago









      RolandiXorRolandiXor

      44.7k25140231




      44.7k25140231






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Try sudo snap info "name of snap" it should give the details of the snap and the services it's running.






          share|improve this answer
























          • The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

            – RolandiXor
            3 hours ago













          • Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

            – rohtua
            3 hours ago











          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%2f1124873%2fis-there-a-way-to-check-if-a-specific-snap-is-running-from-the-cli%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














          Try sudo snap info "name of snap" it should give the details of the snap and the services it's running.






          share|improve this answer
























          • The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

            – RolandiXor
            3 hours ago













          • Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

            – rohtua
            3 hours ago
















          0














          Try sudo snap info "name of snap" it should give the details of the snap and the services it's running.






          share|improve this answer
























          • The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

            – RolandiXor
            3 hours ago













          • Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

            – rohtua
            3 hours ago














          0












          0








          0







          Try sudo snap info "name of snap" it should give the details of the snap and the services it's running.






          share|improve this answer













          Try sudo snap info "name of snap" it should give the details of the snap and the services it's running.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 3 hours ago









          rohtuarohtua

          813




          813













          • The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

            – RolandiXor
            3 hours ago













          • Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

            – rohtua
            3 hours ago



















          • The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

            – RolandiXor
            3 hours ago













          • Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

            – rohtua
            3 hours ago

















          The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

          – RolandiXor
          3 hours ago







          The issue with this command is that it only tells you if daemons are running, not if say, a GUI tool is running. I'll edit my question to mention this.

          – RolandiXor
          3 hours ago















          Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

          – rohtua
          3 hours ago





          Not too sure then to be honest. Just thinking about it another way, if it's the client could you not use a script to create a test file in the folder that is syncing via the client then test for its existence on the nextcloud server using webdav? Then you'd know it's running as its uploaded the test file.

          – rohtua
          3 hours ago


















          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%2f1124873%2fis-there-a-way-to-check-if-a-specific-snap-is-running-from-the-cli%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

          GameSpot

          connect to host localhost port 22: Connection refused

          Getting a Wifi WPA2 wifi connection