• 𝕸𝖔𝖘𝖘@infosec.pub
    link
    fedilink
    English
    arrow-up
    77
    ·
    29 days ago

    I’ve found out the hard way: Running the script during startup, and running it using the proper user authorization, are two different things.

      • bleistift2@sopuli.xyzOP
        link
        fedilink
        English
        arrow-up
        24
        ·
        29 days ago

        You’re right and I’m dumb. I forgot to absolute-ify one of the paths, which caused the script to be dependent on my user environment, which isn’t loaded by the desktop file.

      • bleistift2@sopuli.xyzOP
        link
        fedilink
        English
        arrow-up
        17
        ·
        29 days ago

        Knowing that the environment is finicky, I made sure to only use absolute paths to all files and executables.

        But thanks for the hint.

    • bleistift2@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      13
      ·
      edit-2
      29 days ago

      Indeed, I made this meme from memory and got the extension wrong.

      I corrected the meme. Thanks for pointing out the error

  • mindbleach@sh.itjust.works
    link
    fedilink
    arrow-up
    7
    ·
    29 days ago

    “Can you mount the /media/user/Backup drive on startup?”

    “Sure.”

    “… where is it?”

    “Somewhere else.”

  • majiks@lemm.ee
    link
    fedilink
    arrow-up
    2
    ·
    29 days ago

    gnome-terminal -- sh -c "my_command" This will open that command in new terminal window at login

    • skulblaka@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      29 days ago

      Hey, I was working on the same problem the other day and maybe you can help me with it a bit further. If you don’t mind.

      I like to run gotop on my second monitor so I can watch my system resources, and normally I just open a terminal window and type gotop and it runs and stays open and continually updates. I’ve made this command into a shell script to run at startup. Using this script presumably halfway works, because a terminal window shows up, but it tells me “the child process exited normally with status 127.” and prompts for relaunch (which does nothing except present the same message again).

      Now the internet tells me that 127 generally means “command not found” which doesn’t really make sense to me because gotop is in my PATH and can be run normally without any kind of special arguments or location if I pop open a terminal and do it myself. So I’m not really sure where the problem lies. The script in question is currently parked on my desktop and when I run it manually, when logged in and everything, nothing changes except that I also get an additional terminal window that states the child process exited normally with status 0.

      I’m brand new to both Linux and shell scripting so I barely have any idea what I’m doing here, I’ve gathered through individual research that I should also have a line starting the file with #! /bin/bash but I’m not actually even too confident about that part. Currently the entire script reads as follows:

      #! /bin/bash gnome-terminal -- sh -c gotop

      I’ve tried with and without quotes on gotop and I’ve tried with and without the hashbang and none of the four options have given me different results, which makes me think I’m barking at the wrong tree. I have made the script executable so I don’t think that’s the problem.

      O wise one, please bestow upon the poor noob your knowledge. (This request is also open to other wise ones who may be passing by.)

      • Hawk@lemmynsfw.com
        link
        fedilink
        arrow-up
        2
        ·
        28 days ago

        For debugging sake, put the full path to the binary, eg /usr/bin/gotop (check with which gotop)

      • majiks@lemm.ee
        link
        fedilink
        arrow-up
        2
        ·
        28 days ago

        Honestly, I have no idea :D. What I would try is:

        1st check that the command is on 2nd line of script (1st line is only #!/bin/bash, note that there is no space) but that might seem wrong only due to lemmy formatting.

        2nd I’d try using full path of gotop binary. Use which gotop to find where it is. Must start with a /

        3rd I’d try w/o script at all. The command I quoted works in Cinnamon startup applications from the “start” menu, add new entry there with your command.

        4th chatgpt knows a lot about common linux problems.