I wanted to install jackett and sonarr, they are complicated to use as is, moreover I am using Ubuntu. I am following fuidleine for installing jackett with STUPID command line making it EXTRA difficult. But now I have to change directory ownerships and what nots. I am the ONLY user on this machine. I want to own everything by default I am root I am admin I am user I am all. How do I make this happen instead of sending stupid commands all the time and making using Linux EASY. Before anyone getting on about Security I don’t give 2centa about it .I just want to use and install and do whatever I wish.

How do I make this happen Forever, once inför all.

  • @Scipitie@lemmy.dbzer0.com
    link
    fedilink
    3112 days ago

    Two more things to add: you get downvoted not for the content but for the tone. People tend to not respond well to abuse, even if verbal - and at least I read a “make this shit work for me” in between your lines.

    And more important: what you are asking is not easy. Wouldn’t be on windows, wouldn’t be on macos (disclaimer: I’ve never set up the arr stack on either but docker runtimes) . You are diving into server software no matter if you’re the only user or not. Either you accept this and the learning curve ahead of you or you give up on it.

    • @Alborlin@lemmy.worldOP
      link
      fedilink
      -35
      edit-2
      12 days ago

      You represent part of community and these replies does not come out as helpful and community then keeps saying Linux use is 4% and rejoice

      • @tinocofaidh
        link
        111 days ago

        But that’s what you will want to do…follow the guideline, use commands and set up ownership properly.

        Use commands would mean codifying the steps, so even the author doesn’t know how to write English, you won’t make one step wrong.

        Second thing is, besides you, there are many many little daemons around you and using your computer, just waiting for you to think you are the sole owner and do one wrong step…

  • @TheCheddarCheese@lemmy.world
    link
    fedilink
    English
    23
    edit-2
    12 days ago

    I probably just fell for the most obvious ragebait in existence

    but in the unlikely event that you are actually being serious then owning everything would probably wreck your entire system at some point whether directly or not. and looking through the github page it doesn’t seem that hard to install to me, just copy paste one command and you’re done with it… idk never actually had the need to use it.

    • @Alborlin@lemmy.worldOP
      link
      fedilink
      -512 days ago

      Yah if it was simple as that in Linux. When the page says do chown 775 xyz , the Linux throes error as can’t modify, then I go down rabbit hole…honestly it’s far from simple

      • @greedytacothief@lemmy.world
        link
        fedilink
        512 days ago

        “chown” is a command for changing the users and groups who own a file. But the options “775 xyz” are used with chmod, a command for changing what permissions the owners and groups have over a file. I’m not sure what you’re trying to do so I can’t tell what part of the command is wrong.

        Either way you can run a command with elevated permissions by putting “sudo” in front of the command. Or by switching to the root user by using the command “su” or “sudo -i” (if you have sudo access, but don’t know the root password)

      • lemmyreader
        link
        English
        211 days ago

        Yah if it was simple as that in Linux. When the page says do chown 775 xyz , the Linux throes error as can’t modify, then I go down rabbit hole…honestly it’s far from simple

        To be able to use chown (Change Owner) you need to have the powers to do so. Your default user does not have such powers when the target is not yet owned by that user. Perhaps you did not use sudo, like sudo chown 775 xyz So I guess the documentation of that software installation howto is lacking specifics for Ubuntu (Ubuntu uses sudo, but e.g. Debian does not do so and defaults to su).

  • @bizdelnick
    link
    1211 days ago

    Before anyone getting on about Security I don’t give 2centa about it

    So Linux is not for you. Take a look at MS DOS 4.0, its sources were published few days ago.

  • macniel
    link
    fedilink
    1212 days ago

    No you don’t want to be root or admin or whatever. You want not to have your external programs like your browser, email client what have you to run as root. You don’t want malware without the ability to intervene.

    Not even under Windows are you running as admin all the time.

    So perhaps consider learning why it is a good idea to run your user at low privileges.

    And while you are at it, most if not all programs come with documentation and or man pages. To access the latter use the command man <name of the command>

  • Square
    link
    fedilink
    911 days ago

    You should just pay some streaming companies instead of trying so hard. No one wants to help you with that attitude.

  • @bloodfart
    link
    812 days ago

    Back up before you do this and read why it won’t do what you want first.

    Here’s how to do what you’re asking: chown -R user /

    You’ll need to be root or use sudo to do that.

    Here’s why it won’t do what you want: the arr programs each have their own user and group and they expect to be able to freely modify files they are allowed to through the permission system and to be prevented from doing so for files they’re not supposed to touch through that same system. It doesn’t matter if your user has ownership of all files on the system because your username isn’t the one those programs will be operating under when they go to move something from your incoming directory to your storage drive.

    You could change them to all use the same username, yours, by editing their config files, but that’s not recommended and the programs are not tested in that configuration or designed to be run that way.

    Not only will operating a single user system not fix the problem you’re having, making your username the single user isn’t the right way to do it. Running in single user mode is done as the root user and it has a special run level, 1. There are five other run levels above it (not counting zero, which is when the computer is not running).

    Tldr: don’t do what I just told you how to, it won’t fix your problems. Learn the permissions system and fix your permissions problems instead or use a platform for the arrs that you’re more comfortable with.

  • Become comfortable with the command line. Learn the when and whys of using sudo. If you aren’t willing to do that, you may not want to stick with Linux. It can have a little bit of a learning curve in the beginning (nothing like what it used to be), but you should get more comfortable in a short time.

  • pinchcramp
    link
    fedilink
    712 days ago

    I’m sorry to hear that you’re having a hard time getting the software running. I understand that this can be very frustrating.

    As others have said, making yourself the owner of everything can cause numerous issues in the long run and there’s a reason why most distributions DON’T make you root.

    Why are you using Linux in the first place? I think sonarr and jackett both run on Windows as well.

    Don’t let the frustration get the best of you. If you really want to run those tools yourself, then dive into it (and all the technical issues that are part of it), but if you only want to have access to the functionality, you might want to look into a service that takes care of all the technical burden.

    Good luck

  • @smileyhead@discuss.tchncs.de
    link
    fedilink
    1
    edit-2
    10 days ago

    Hey hey, calm down :).

    Some software is OK to install manually and natively, like Wordpress or Nextcloud, they require some things to get together but those two are just standard PHP apps after all.
    But Jackett and Sonarr are software made of much more moving parts. And actually are quite badly packaged (if packaged at all). Their creators see manual install as ment mostly for developers while end user is expected to use containers.

    Like other have said, learn Docker and Docker Compose (or overall containers). You’ll be able to spin up such services with just one line (or with just simple declaration in compose.yaml file). But don’t copy-paste, learn it because it’s worth it.

    If you really really get stuck, there also is Yunohost, a Debian based system with web GUI and one click install scripts for selfhosted stuff. But it won’t be as nearly flexible and portable (moving between servers, having multiple disks, configurable backups…) like Docker, there is a reason why shipping server-grade software looks like that so don’t be mad at Linux, because on other systems installing scalable, server-grade things would look the same :P.

  • @d416@lemmy.world
    link
    fedilink
    -411 days ago

    I for one upvoted this post. I am tired of nanny state OSs restricting what we want to do thinking they are protecting the poor user who surely they must classify as noobs. We need a free open LIBERTARIAN OS now.