dormi.zone
  • Communities
  • Create Post
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
@Waffelson@lemmy.world to linuxmemes@lemmy.world • 1 year ago

When you realized you forgot sudo

lemmy.world

message-square
42
fedilink
372

When you realized you forgot sudo

lemmy.world

@Waffelson@lemmy.world to linuxmemes@lemmy.world • 1 year ago
message-square
42
fedilink
alert-triangle
You must log in or register to comment.
  • @kmirl@lemmy.world
    link
    fedilink
    English
    50•1 year ago
    fuck() {
        sudo $(fc -ln -1)
    } 
    

    This function takes the last command and puts sudo in front of it. Actually used it in a zoom call at work without thinking and it took a second to realize why everyone was laughing. Not my invention–came across it years ago on stackoverflow or someplace and thought it was funny/useful.

    kmirl@tux:~$ ls /root
    ls: cannot open directory '/root': Permission denied
    kmirl@tux:~$ fuck
    [sudo] password for kmirl: 
    bin  debs  docs  Mail 
    
    • folkrav
      link
      fedilink
      29•1 year ago

      Considering the function name, here’s an obligatory thefuck plug

    • @Esca@lemmy.one
      link
      fedilink
      18•1 year ago

      Isn’t this the same effect as just running ‘sudo !!’ ?

      • @subtext@lemmy.world
        link
        fedilink
        13•1 year ago

        According to this super user question, someone said that !! won’t work in a function, so you must use the fc -ln -1 command in a subshell instead. Note the response that says eval shouldn’t be used (not sure why)

        • @Esca@lemmy.one
          link
          fedilink
          10•1 year ago

          Yeah but instead of a function you just make it an alias.

          • @subtext@lemmy.world
            link
            fedilink
            2•1 year ago

            Oh good point, I didn’t think about that

        • Johanno
          link
          fedilink
          4•1 year ago

          Eval shouldn’t be used on userinput. Meaning that if smb other than you may use this to change the system he could put malicious code in the eval part.

          Probably doesn’t matter on shell level

      • @Cinnamon3431@lemmy.world
        link
        fedilink
        3•1 year ago

        no because it takes the previous command and adds sudo to it right?

        • @subtext@lemmy.world
          link
          fedilink
          6•
          edit-2
          1 year ago

          !! is a shortcut for whatever the last command was is it not?

          E: https://devhints.io/bash#history

    • Rustmilian
      link
      fedilink
      English
      15•
      edit-2
      1 year ago
      alias fuck='sudo $(fc -ln -1)'
      
  • @huginn@feddit.it
    link
    fedilink
    27•1 year ago

    Lazy vim way I do it:

    ggVG"wY:q! followed by sudo !! then VG"wp:x

    Grab entire file and stuff it in register W

    Exit file

    Reopen sudo

    Select all and replace with register W them write

    • @rtxn@lemmy.worldM
      link
      fedilink
      English
      27•1 year ago

      Now I understand how the Adeptus Mechanicus feel when they perform a ritual power-on.

      • @huginn@feddit.it
        link
        fedilink
        10•1 year ago

        It’s funny how years of use make that so intuitive but spelled out it’s a garbled mess

    • @dukk@programming.dev
      link
      fedilink
      10•1 year ago

      Lazier way:

      :w !sudo tee %

      • @huginn@feddit.it
        link
        fedilink
        2•1 year ago

        Yeah learning about tee from this thread honestly.

        It’s been interesting realizing I had such a useful tool at my disposal but never knew

  • Björn Tantau
    link
    fedilink
    15•1 year ago

    Is there an editor that can request root privileges without restarting it? That would be quite useful.

    • @h3rm17@sh.itjust.works
      link
      fedilink
      11•1 year ago

      In vim, in normal mode you can do: :w !sudo tee %

      • z3rOR0ne
        link
        fedilink
        3•1 year ago

        Apparently that doesn’t work in NeoVim, so recently I installed the suda plugin.

        Personally, I just doas nvim and then the file name that needs root access, but it’s a handy plugin in case I forget.

        • dream_weasel
          link
          fedilink
          1•1 year ago

          ??? I used this in neovim twice today

          :w !sudo tee % then reload when it asks.

    • @Vilian@lemmy.ca
      link
      fedilink
      9•1 year ago

      i use micro

    • @Botzo@lemmy.world
      link
      fedilink
      5•1 year ago

      It’s a simple trick in Vim:

      https://stackoverflow.com/a/7078429

      For the lazy: :w !sudo tee > /dev/null %

    • @django@discuss.tchncs.de
      link
      fedilink
      English
      5•1 year ago

      Sure, you can do this in emacs: https://fuco1.github.io/2017-04-20-Save-write-protected-files-with-sudo-automatically.html

    • @hex_m_hell@slrpnk.net
      link
      fedilink
      4•
      edit-2
      1 year ago

      Yeah, in emacs you use tramp to open the file with /sudo::

    • Eager Eagle
      link
      fedilink
      English
      4•
      edit-2
      1 year ago

      micro ftw, no need to even memorize a command, it’ll just ask if you want to use sudo

    • chtk
      link
      fedilink
      4•1 year ago

      (n)vim + suda.vim.

    • @YodaDaCoda@sh.itjust.works
      link
      fedilink
      English
      4•1 year ago

      kate does this in KDE, but it’s not cli.

  • @MonkderZweite@feddit.ch
    link
    fedilink
    11•1 year ago

    Kwrite/Kate asks you for password. Seriously, why can’t they all just use pkexec or some abstraction of it?

    Sadly, i currently borked all Qt apps on my Gtk setup.

    • caseyweederman
      link
      fedilink
      2•1 year ago

      So does Micro. Nano… Nano does not.

      • @MonkderZweite@feddit.ch
        link
        fedilink
        2•1 year ago

        Eh, on console i can just do ssu nano <file>. Graphical editors are in question.

  • StarDreamer
    link
    fedilink
    English
    11•1 year ago
    :w !sudo tee %
    

    Warning: does not work for neovim

    • @cybersandwich@lemmy.world
      link
      fedilink
      2•
      edit-2
      3 months ago

      deleted by creator

      • StarDreamer
        link
        fedilink
        English
        2•1 year ago

        Iirc the specific reason behind this is

        • sudo by default requires a tty to run
        • vim’s bang spawns a tty to execute commands
        • nvim’s bang executes the command directly, then pipes the output to nvim

        As a result, sudo (without args) can’t work in nvim as it doesn’t have a tty to prompt the user for passwords. Nvim also used to do what vim did, but they found out spawning the tty was causing other issues (still present in vim) so they changed it.

        • dream_weasel
          link
          fedilink
          1•
          edit-2
          1 year ago

          There must be more to this. I just launched a terminal and created a file to test with nvim on arch and it works perfectly fine.

          Take a file, sudo chown root:root filename, sudo chmod 700 filename, edit with nvim and save with :w !sudo tee % then reload. Works fine.

          I’m on arch with suckless st.

          Edit:

          Made a demo vid - https://youtu.be/YKZuAvoSW5g

    • dream_weasel
      link
      fedilink
      1•1 year ago

      sure it works in neovim

      I didn’t do any editing since it’s just to prove a point, but I think it does fine.

      • @PipedLinkBot@feddit.rocksB
        link
        fedilink
        English
        1•1 year ago

        Here is an alternative Piped link(s):

        sure it works in neovim

        Piped is a privacy-respecting open-source alternative frontend to YouTube.

        I’m open-source; check me out at GitHub.

  • @RoyaltyInTraining@lemmy.world
    link
    fedilink
    6•1 year ago

    One of the many reasons why I use micro

  • @hex_m_hell@slrpnk.net
    link
    fedilink
    5•1 year ago

    C-x C-f /sudo::/path/to/file

    • @jxk@sh.itjust.works
      link
      fedilink
      3•1 year ago

      I love Emacs. Thanks for teaching me someyhing today

  • @Pantherina@feddit.de
    link
    fedilink
    4•1 year ago

    sudoedit is more secure btw. Many editors are not built to be ran as root, and this copies the file to a temo directory, edits it without root, and then overwrites the original file on save with root.

  • ѕєχυαℓ ρσℓутσρє
    link
    fedilink
    4•
    edit-2
    1 year ago

    Use suda.vim for automatically dealing with such cases. Works with neovim as well.

    I’ll also recommend adding the following to your init.lua or some config file because suda doesn’t play nicely with nvim -d or vimdiff.

    -- Disable Suda in diff views
    if not vim.api.nvim_win_get_option(0, 'diff') then
        vim.g.suda_smart_edit = 1
    end
    

    The vimscript version of the same would be:

    " Disable Suda in diff views
    if ! &diff
        let g:suda_smart_edit = 1
    endif
    
  • @Hoimo@ani.social
    link
    fedilink
    4•
    edit-2
    1 year ago

    I am here for one reason and one reason alone: source anime is Watamote, episode 12 @18:36

    Tomoko tries to approach a girl, but the wind confuses her and she runs away in embarrassment, even though the girl was really friendly and would have liked to talk to her.

    In the meme, this scene is used to parallel the feeling of an external system blocking an operation that both participants would agree to.

    A similar feeling could be memed with the “myth of consensual sex” format.

    • @Waffelson@lemmy.worldOP
      link
      fedilink
      2•1 year ago

  • @AMDIsOurLord@lemmy.ml
    link
    fedilink
    3•1 year ago

    deleted by creator

  • @ordellrb@lemmy.world
    link
    fedilink
    2•1 year ago

    deleted by creator

  • 👍Maximum Derek👍
    link
    fedilink
    English
    2•1 year ago

    deleted by creator

    • @Hapbt@mastodon.social
      link
      fedilink
      2•1 year ago

      @Bishma @Waffelson i recently started using fish for its command line history and autocompletion

linuxmemes@lemmy.world

!linuxmemes@lemmy.world

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !linuxmemes@lemmy.world

Hint: :q!


Sister communities:
  • !tech_memes@lemmy.world
  • !memes@lemmy.world
  • !lemmyshitpost@lemmy.world
  • !risa@startrek.website

Community rules (click to expand)

1. Follow the site-wide rules
  • Instance-wide TOS: https://legal.lemmy.world/tos/
  • Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like “every user of thing”.
  • Don’t get baited into back-and-forth insults. We are not animals.
  • Leave remarks of “peasantry” to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
4. No recent reposts
  • Everybody uses Arch btw, can’t quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
6. (NEW!) Regarding public figures

We all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.

  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.

 

Please report posts and comments that break these rules!


Important: never execute code or follow advice that you don’t understand or can’t verify, especially here. The word of the day is credibility. This is a meme community – even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don’t remove France.

  • 1.14K users / day
  • 1.95K users / week
  • 8.92K users / month
  • 18K users / 6 months
  • 24.9K subscribers
  • 1.59K Posts
  • 83.5K Comments
  • Modlog
  • mods:
  • Kevin
  • @zephyr@lemmy.world
  • @rtxn@lemmy.world
  • BE: 0.19.3
  • Modlog
  • Legal
  • Instances
  • Docs
  • Code
  • join-lemmy.org