12 GREAT command line programs YOU recommended!

Поділитися
Вставка
  • Опубліковано 16 лис 2024

КОМЕНТАРІ • 791

  • @TheLinuxEXP
    @TheLinuxEXP  8 місяців тому +62

    Try out Proton Mail, the secure email that protects your privacy: proton.me/mail/TheLinuxEXP

    • @FrankCastiglione
      @FrankCastiglione 8 місяців тому

      Soon I'll try. I tested Tutanota/Tutamail but I didn't like user interface. Proton Mail looks good.

    • @rhalloff
      @rhalloff 8 місяців тому +2

      I'm a huge Proton Fan. I used most of their apps.

    • @guandulin
      @guandulin 8 місяців тому +1

      I do use proton, I am still waiting for the drive Linux app.

    • @user-hl7ic7wc1r
      @user-hl7ic7wc1r 8 місяців тому +5

      Proton gave recovery email addresses to authorities. You might as well use gmail

    • @eb37fnrcty19
      @eb37fnrcty19 8 місяців тому

      @@user-hl7ic7wc1r source please? might help us out

  • @defekT1312
    @defekT1312 8 місяців тому +725

    Just started to watch this and I already want to Say: Yes please more of this. Community recommendations are always the best because it's real life experience and no advertising.

    • @haplozetetic9519
      @haplozetetic9519 8 місяців тому +12

      Agreed. Learning Linux back in '98 or '99 was a real slog. I missed so many things that would have made it a lot easier much sooner with some suggestions.

    • @cexeodus
      @cexeodus 8 місяців тому +2

      for real

    • @ClokworkGremlin
      @ClokworkGremlin 8 місяців тому +1

      Picked up my first Linux malware experience, so that was fun.

    • @haplozetetic9519
      @haplozetetic9519 8 місяців тому +3

      @@ClokworkGremlin So far, I've been lucky regarding malware (so for as I know). I did, however find someone hacking into my system when I was still new to Linux, but that's to be expected when I was ignorant and ran as root.

    • @cexeodus
      @cexeodus 8 місяців тому +1

      @@ClokworkGremlin Youre not alone, man im tracking down 8 critical vulns in two recent kernel versions

  • @foji-video
    @foji-video 8 місяців тому +646

    only use brew if you dont find the package in your repo.
    Brew can break dependencies, or install non-functional stuff because of different versions. Your own distro package manager has the right versions

    • @cameronbosch1213
      @cameronbosch1213 8 місяців тому +42

      Correct. I was just about to say that!
      I know btop (for example), is in the *extra* arch repo. Obviously, if it's available in your distros repos (or even in the AUR on Arch), I'd recommend installing it from there to avoid dependency hell.

    • @jaumesinglavalls5486
      @jaumesinglavalls5486 8 місяців тому +19

      I only has brew install on mac os, any other os, is not using it, in linux if I don't find the package, simply I build it from code, usually is pretty quick, install some deps, and make build, then add some soft-link into the path, and wala! is there.

    • @johnandmegh
      @johnandmegh 8 місяців тому +8

      And if it's not in the native (deb/rpm) format, using something like Distrobox or Snap is a far superior alternative

    • @owmylehg7811
      @owmylehg7811 8 місяців тому +8

      Agreed. Basically all of these were in the Extra repo in Arch. And the few that weren't were in the AUR. A lot of these are super common as well, so you probably won't need brew for any of them.

    • @Logan5Greye
      @Logan5Greye 8 місяців тому

      Homebrew is a necessity on macs. The search results from their appstore are a mess.

  • @sbrl
    @sbrl 8 місяців тому +340

    tldr-pages maintainer here. Thanks for featuring us! ✨
    (psst, we're always looking for more contributors :P)

    • @markcoren2842
      @markcoren2842 8 місяців тому +23

      tldr single-handedly doubled my command line productivity. I can't thank you all enough for all your amazing work!

    • @sbrl
      @sbrl 8 місяців тому

      @@markcoren2842 heh, glad we could help!

    • @aronflip4021
      @aronflip4021 7 місяців тому +2

      what language is it written in. I am proficient in Rust so perhaps I could help

    • @sbrl
      @sbrl 7 місяців тому

      @@aronflip4021 Hello! All our pages are in Markdown! We have many clients in many different languages - including a Rust client. We'd love you to help us and/or our community-supported clients out :D

    • @duckmeat4674
      @duckmeat4674 6 місяців тому

      ​@@aronflip4021Did you look at their repo?

  • @nmetal05
    @nmetal05 8 місяців тому +114

    zellij is an arabic word which actually means the style of mosaic tilework made from individual tiles ,its very common to be on walls ,floors,and ceilings as decorations in homes ,especially in my hometown Morocco ,so it's definitely a good name choice

    • @davguev
      @davguev 8 місяців тому +1

      Ohh, I thought it was Dutch. Good to know!

    • @medilies
      @medilies 4 місяці тому

      I'm Algerian and always found funny how the word makes me think of the actual Zelij XD. Thank you for the confirmation.

  • @Alex-ce1ol
    @Alex-ce1ol 8 місяців тому +168

    FYI, you don't need Atuin to search your bash history. Just press CTRL+R and start typing, then press CTRL+R again as needed to cycle through the matches.

    • @cattom44
      @cattom44 8 місяців тому +1

      That's what I immediately thought.

    • @51n79
      @51n79 8 місяців тому +27

      Also just typing the keyword "history" gets overlooked.

    • @howling-wolf
      @howling-wolf 8 місяців тому

      I like to use the fzf integration that replaces the standard ctrl+r search with a small window that shows results from your hist based on what you type. Search powered by fzf. Use up/down to move through the list

    • @wesgould1
      @wesgould1 8 місяців тому +22

      Even better than that... use fzf with control r so you get fuzzy finding with that. No need for atuin at all.
      # CTRL-/ to toggle small preview window to see the full command
      # CTRL-Y to copy the command into clipboard using pbcopy
      export FZF_CTRL_R_OPTS="
      --preview 'echo {}' --preview-window up:3:hidden:wrap
      --bind 'ctrl-/:toggle-preview'
      --bind 'ctrl-y:execute-silent(echo -n {2..} | pbcopy)+abort'
      --color header:italic
      --header 'Press CTRL-Y to copy command into clipboard'"

    • @OffGridAussiePrepper
      @OffGridAussiePrepper 8 місяців тому +2

      he already knows this, he told us in a previous vid maybe 1 year ago

  • @ShiziKroc
    @ShiziKroc 8 місяців тому +106

    I recommend NCDU, it's more interactible for space usage analysis

    • @CelsoAndradeDev
      @CelsoAndradeDev 8 місяців тому +2

      I agree

    • @terryriley6410
      @terryriley6410 8 місяців тому

      diskonaut is also pretty good and it has a progressive display that updates a filegraph while scanning where ncdu only shows the results when it's finished with scanning.

    • @breno_6888
      @breno_6888 8 місяців тому +2

      same

    • @terryriley6410
      @terryriley6410 8 місяців тому

      diskonaut is also good

    • @__mrmino__
      @__mrmino__ 8 місяців тому +8

      Have you tried gdu? It's just _so much faster_

  • @legitt6093
    @legitt6093 8 місяців тому +33

    If you're using an Arch-based distro, you can find all of the mentioned programs in the regular (not AUR) repos (also, no need for Homebrew :))

    • @__Brandon__
      @__Brandon__ 7 місяців тому +10

      And using brew can seriously break your install. Don't mix package managers because the quickest repair is generally a reinstall

  • @barbiefan3874
    @barbiefan3874 8 місяців тому +167

    always prefer installing packages via your distro's package manager, if the package is there

    • @TheLinuxEXP
      @TheLinuxEXP  8 місяців тому +26

      Not necessarily. Your distro might have old versions of these, missing useful features

    • @NameUserOf
      @NameUserOf 8 місяців тому

      @@TheLinuxEXP git release versions. For most of the tools they have nice install explanation and those tools aren't huge like LibreOffice so compiling them is pretty fast.
      Trusting Homebrew is like trusting PPA, not a very good thing. I also support the idea of trusting repos from distro and if you absolutely need something fresh then next stop would be the devs themselves(usually git, sometimes they already have binaries as well).

    • @OPguy10
      @OPguy10 8 місяців тому +89

      i'd rather have old software than broken packages

    • @johannesrodt290
      @johannesrodt290 8 місяців тому +33

      Use nix instead

    • @fabiandrinksmilk6205
      @fabiandrinksmilk6205 8 місяців тому

      @@TheLinuxEXPHomebrew could provide problems with dependencies, which Nix does not. nix-env is a pretty elegant alternative to Homebrew.

  • @ivanmaglica264
    @ivanmaglica264 8 місяців тому +80

    mc - Midnight Commander - modern Norton Commander replacement. I cant live without it, saves literally hours a week

    • @zyghom
      @zyghom 8 місяців тому +4

      1000000% agreed, every distro I install or container I always start with: "sudo apt install htop mc"

    • @24hhhhours
      @24hhhhours 8 місяців тому +6

      I prefer ranger

    • @BobOgden1
      @BobOgden1 8 місяців тому

      This

    • @ADHJkvsNgsMBbTQe
      @ADHJkvsNgsMBbTQe 8 місяців тому

      Thanks for the advice.

    • @Teaman313
      @Teaman313 8 місяців тому +4

      😲 MC is still around?!

  • @bennypr0fane
    @bennypr0fane 8 місяців тому +78

    Please definitely make more of these "best tools for x"-style recommendation videos, I always find super helpful stuff when you recommend things!

  • @taylorhardy902
    @taylorhardy902 8 місяців тому +43

    You can press control-r to reverse search your bash history in vanilla bash and if you press control-r again it will go to the next result

    • @JamesFirth-v
      @JamesFirth-v 8 місяців тому +4

      Fzf also has the ability to replace the control r search in some shells like zsh which is my favourite way to use it

    • @NostraDavid2
      @NostraDavid2 8 місяців тому

      Fzf enables me to choose a branch in git, instead of having to do a git branch -a first. Don't have the command by hand, otherwise I would've shared.

  • @thedoofguy5707
    @thedoofguy5707 8 місяців тому +34

    Midnight Commander. It's hands down the best file manager for terminals. Flexible, powerful, and always there when you need it.

    • @gg-gn3re
      @gg-gn3re 8 місяців тому +1

      lf (made in go) is better, far better than ranger, far better than nnn and better than midnight commander

    • @thichquang1011
      @thichquang1011 8 місяців тому

      vifm is pretty cool also

    • @phillipanselmo8540
      @phillipanselmo8540 25 днів тому

      yazi makes all other terminal file managers obsolete

  • @Goose.wox.2
    @Goose.wox.2 8 місяців тому +46

    8:26 i personally use ncdu because i find it more easy to read and navigate

    • @brazenbull36
      @brazenbull36 8 місяців тому +8

      love ncdu

    • @vighneshmallampally6627
      @vighneshmallampally6627 8 місяців тому +4

      Me too ✋

    • @oWeRQ666
      @oWeRQ666 8 місяців тому

      Dua and broot interesting too, but not in repos

    • @ordinosaurs
      @ordinosaurs 8 місяців тому

      Just proposed it, hadn't found your message yet. Yes, ncdu is a lifesaver.

  • @PanduPoluan
    @PanduPoluan 8 місяців тому +20

    Ahh I see that CLI tools I use have been mentioned: btop, eza, bat ... What's not mentioned:
    - rg (ripgrep = faster grep alternative)
    - fd (faster file finder)
    - ncdu (an alternative to dust)
    - iftop (network traffic monitoring)
    - zsh + oh-my-zsh

  • @jaumesinglavalls5486
    @jaumesinglavalls5486 8 місяців тому +68

    One tool, I use a lot is call thefuck, I think I didn't get time to see the form to add it, (and pretty sure it won't be in this video if it had) thefuck is a command that allows you rectify your last command, if you ever writed bim when you wished to write vim, run fuck, and he will propose you the correct command. (Not allways works, but in general I love it and use it every day)

    • @TheNotSoChibiRobo
      @TheNotSoChibiRobo 8 місяців тому

      Seems very useful, also the best name for a command xD

    • @hugofontes5708
      @hugofontes5708 8 місяців тому

      caught my interest but how is it different from just pressing up and editing the last command I sent?
      EDIT: looked it up, it actually makes the correction for you to confirm and suggests a list in case it ambiguity. Added!

    • @jaumesinglavalls5486
      @jaumesinglavalls5486 8 місяців тому

      @@hugofontes5708 well, when he detects it well, you avoid the editing, I use it usually to transform the git push to git push -u origin xxx,

    • @daveyhodge
      @daveyhodge 8 місяців тому +3

      Alias to drat for a family friendly version

    • @moarjank
      @moarjank 8 місяців тому +1

      LOL!
      alias drat=fuck
      Best line in a bash profile so far 😂

  • @Eagledelta3
    @Eagledelta3 8 місяців тому +41

    Just as a heads up - FZF is available in most, if not all, distros. So you can just install it from there. Also, like atuin, FZF can search your command history with CTRL+R.

    • @nuligebla1173
      @nuligebla1173 8 місяців тому +6

      or you could just press CTRL+R under normal bash and... what do you know, the same behavior!

    • @opfipip3711
      @opfipip3711 8 місяців тому

      @@nuligebla1173 fzf + CTRL+R is sooo much better than bashs default CTRL+R.
      It sorts results sensibly, ignores typos and shows you a couple of results at once.
      Especially together with setting up your history to grow indefinity, it can be incredibly useful to find "that command pipeline using a tool that was named somewhat like ... that i used to auto-sort my music collection a few years ago" in a few secs.

    • @sethmclean8334
      @sethmclean8334 8 місяців тому

      @bla1173 except without the fzf search algo

    • @dhvcc8182
      @dhvcc8182 8 місяців тому

      @@nuligebla1173 not the same at all, fzf search does fuzzy finding from wherever in the command, while default makes you type out the start of the command perfectly, plus I don't remember a way of easily going through similar commands in a search (very usefull with docker/kubectl), been using only for history search for a long time. Although I use quite a lot of commands from this video - fzf is the most needed one for me personally

    • @pesopes
      @pesopes 8 місяців тому

      ​@@nuligebla1173the advantage of using CTRL+R with fzf is (like the name suggests) fuzzy finding

  • @collinslagat3458
    @collinslagat3458 8 місяців тому +64

    Zoxide as a replacement or complement for *cd* command.

    • @terryriley6410
      @terryriley6410 8 місяців тому +5

      yes. never going back to cd.

    • @paultapping9510
      @paultapping9510 6 місяців тому +1

      one of the first things I install, I like it so much I've aliased cd to it

  • @halfsourlizard9319
    @halfsourlizard9319 8 місяців тому +72

    Why on earth would you use brew unless you're stuck using a Mac?!?

    • @circular_logic6217
      @circular_logic6217 8 місяців тому +3

      For me it's pragmatism, if I can't get it on a native package or Flatpak etc then I prefer Brew over a repo clone. That way I can update these tools more easily than a clone. In addition, a lot of the post-install scrips automate away all the readme steps so you save a little bit of time.

    • @halfsourlizard9319
      @halfsourlizard9319 8 місяців тому

      @@circular_logic6217 If a package isn't in the main Arch repos or the AUR, does it even exist?

    • @__Brandon__
      @__Brandon__ 7 місяців тому +4

      But for something like btop it doesn't make sense. All of the dependencies get installed with brew and your system package manager doesn't know about it. Later it can causes dependency conflicts that are pretty hard to fix. Generally it's just easier to start over if you break yourself by using two package managers at the same time

    • @phillipanselmo8540
      @phillipanselmo8540 25 днів тому

      ​@@circular_logic6217just use nix

  • @NameUserOf
    @NameUserOf 8 місяців тому +14

    yazi - file manager. Very quick and development is alive and fast as well.
    fd(fd-find) - find replacement, most of the time much faster and easier to use.

    • @changingmyselff
      @changingmyselff 8 місяців тому

      oh, yesss, yazi is amazing

    • @PanduPoluan
      @PanduPoluan 8 місяців тому

      Ah, there's something I need to try! (yazi)
      And I agree with you about fd !!

  • @ferdynandkiepski5026
    @ferdynandkiepski5026 8 місяців тому +10

    It wasn't mentioned in the video but you can use fd-find by sharkdp to replace find. It is faster, the normal command for it is fd, and it's behaviour is slightly different (i prefer it) but can be set to be identical with the proper options. You can use it for the input into fzf, to make it faster.

  • @ErrorMessageNotFound
    @ErrorMessageNotFound 8 місяців тому +6

    s-tui is a command line tool I use pretty often. It's a front-end for stress but also a very detailed cpu monitor. It shows core utilization, temperatures, power, frequency etc. Very useful stuff.

    • @ErrorMessageNotFound
      @ErrorMessageNotFound 8 місяців тому

      You can stress your cpu in various ways, check if it's performing like it's supposed to, see if your cooling is adequate, etc.

  • @utahnl
    @utahnl 8 місяців тому +21

    Not a separate tool but you can press in ctrl+r in bash to search your command history.

    • @gavinjones
      @gavinjones 8 місяців тому +1

      Indeed but you can't see all matches at once. You could grep but the program is just more convenient

    • @zytr0x108
      @zytr0x108 2 місяці тому

      How did I not know about this!

  • @realname5630
    @realname5630 8 місяців тому +18

    I'd like to suggest a video idea about terminal keyboard shortcuts like ctrl+c, ctrl+d etc, and also a video about different shells like zsh

  • @df-salaz
    @df-salaz 3 місяці тому +2

    I will note that at 6:55 when you suggest checking if hardware acceleration is enabled, the place you checked will show "true" even if it is not functional! On Arch and some other distros, you will have to manually install a package for your platform to enable hardware acceleration. You can then check if it's actually enabled and functional on Firefox's "about:support" page.

  • @cameronbosch1213
    @cameronbosch1213 8 місяців тому +13

    For me, btop is a great utility, as is nmtui for setting up network connections without a DE for systems that don't have a graphical app for this purpose, like ones that use tiling Wayland compositors or window managers.

    • @PaulG.x
      @PaulG.x 8 місяців тому

      I suppose you run whatthefuck for the help page?

  • @ArmenManukyan
    @ArmenManukyan 8 місяців тому +12

    ncdu has a more intuitive UI than dust, I'd recommend that instead.

    • @rjhornsby
      @rjhornsby 8 місяців тому +2

      Watching the video, it took me a confused minute to understand why dust’s tree representation was inverted. I think it’s because of the sort by size - but I dunno. Visually it still seems less intuitive.

    • @HappyCheeryChap
      @HappyCheeryChap 8 місяців тому

      ​@@rjhornsby yeah i think because you're usually more interested in finding the big stuff... So this saves you from having to scroll up to see them.

  • @madbradfreeman
    @madbradfreeman 8 місяців тому +4

    Absolutely I second tldr. Extremely handy for reminding you of the options people actually use.
    My favorite terminal is Terminator. It's quick, customizable, and easy to splitscreen.
    Oh, and ddate, of course.
    Thanks for the tips!

  • @fan_juggler
    @fan_juggler 8 місяців тому +27

    calcure - calendar for your terminal!

  • @oalfodr
    @oalfodr 8 місяців тому +5

    I loved the format of this video. I knew about all of the mentioned programs (apart from shell history search one that is not even appealing to me since fzf does that already), but I welcome the opportunity to find about new tools in some of the next episodes. Some of my favorite tools are: nvim, rsync, lf - file manager, jq - JSON procesor, ffmpeg, imagemagick, neomutt, awk...

  • @lritzdorf
    @lritzdorf 8 місяців тому +3

    In a similar vein to grub-reboot, you can easily reboot to your BIOS/UEFI on systemd distros (i.e. almost all of them). The relevant command is "systemctl reboot --firmware"

  • @treeoflifeenterprises
    @treeoflifeenterprises 8 місяців тому +11

    awk is a favourite, its, great with grep, cat and head or tail when scraping info from a file into a variable.

    • @averagejoey2000
      @averagejoey2000 4 місяці тому

      you're an old school unix guy aren't you

    • @treeoflifeenterprises
      @treeoflifeenterprises 4 місяці тому

      @@averagejoey2000 well my first intro was to unix in 92, though i've been rocking slackware linux ever since redhat went non-free, before fedora came out.

  • @lundgamingxd5387
    @lundgamingxd5387 8 місяців тому +38

    Another fire TLE video🔥

  • @zeta_eclipse
    @zeta_eclipse 8 місяців тому +8

    zellij is a moroccan word (darija) that means tile (as in floor or wall tiles)

    • @TheLinuxEXP
      @TheLinuxEXP  8 місяців тому +1

      Ohh Nice!

    • @zeta_eclipse
      @zeta_eclipse 8 місяців тому

      @@TheLinuxEXP:)

    • @themedleb
      @themedleb 8 місяців тому +1

      We can say that Zellij (زليج) is Arabic, It is known in Morocco, Algeria, Tunisia and Al-Andalus (old Spain).
      Reference: en.wikipedia.org/wiki/Zellij
      Man3rf ch7al wasel zellij had liamat hhh

    • @zeta_eclipse
      @zeta_eclipse 8 місяців тому

      @@themedlebi've never heard it used in arabic, that's why i assumed it's a darija word

  • @kkb-graph
    @kkb-graph 8 місяців тому +2

    Thanks for the Atuin!
    I'd recommend ncdu instead of dust, as it is much more powerful.
    What else I could recommend: diff-so-fancy, fswatch, httping, jenv, lnav, lynis, micro, mtr
    BTW, I use both htop and btop - each is better for its own use case
    Sure, please make such videos regularly - that is the most practically useful content for most of us)

  • @ToadalChaos
    @ToadalChaos 8 місяців тому +3

    Fzf also does command history searching!
    In fact, that's what I use it for the most.

  • @MoPaTography
    @MoPaTography 8 місяців тому +1

    You can also rerun commands by typing exclamation mark and number you see when you type the history command. Eg !45 will re run command 45 in the history output

  • @Drezaem55
    @Drezaem55 8 місяців тому +6

    Another suggestion: fish. Might not be for everyone, but the completion suggestions are so good and your up arrow behaves as you'd want unlike when using zsh-autosuggestions. The coloring is also really good and it's got most popular colorscheme's so all the colors integrate nicely into the rest of your terminal. Bad thing is: it's not posix compliant, so your bashrc/zshrc isn't 1:1 to fish config, though converting is very easy.

    • @IllllIIllllI
      @IllllIIllllI 8 місяців тому +2

      After only using bash for everything, installing fish for the first time was like stepping into the 21st century shell-wise

    • @moarjank
      @moarjank 8 місяців тому

      Add bass to fish, and you can still get system environment variables and a clean way to run POSIX code

  • @trs5127
    @trs5127 8 місяців тому +9

    You releasing videos is kinda becoming an occasion at this point. I keep checking your channel everytime I open UA-cam to see if there's a new video lmao. So much great content!

    • @TheLinuxEXP
      @TheLinuxEXP  8 місяців тому +1

      Hahaha I try to stick to 2 per week, but I missed on last week as my wisdom teeth were acting up…

    • @trs5127
      @trs5127 8 місяців тому +1

      @@TheLinuxEXP hey man, thanks for the reply.
      And chill out about the schedule. Health above everything else. I know that whenever the video does come out, it's gonna be a banger :)

  • @haplozetetic9519
    @haplozetetic9519 8 місяців тому +1

    tlp works with Powertop. From Debian 12's description in Synaptic:
    TLP is a feature-rich command-line utility, saving laptop battery power
    without the need to delve deeper into technical details.
    TLP’s default settings are already optimized for battery life and implement
    Powertop’s recommendations out of the box. Moreover TLP is highly
    customizable to fulfill specific user requirements.
    Settings are organized into two profiles, allowing to adjust between
    savings and performance independently for battery (BAT) and AC operation.
    In addition TLP can enable or disable Bluetooth, NFC, Wi-Fi and WWAN radio
    devices on boot.
    For ThinkPads and selected other laptops it provides a unified way
    to configure charge thresholds and recalibrate the battery.

  • @lucaggett1603
    @lucaggett1603 8 місяців тому +8

    FZF has been a great addition! I often use autojump for quickly navigating directories

    • @klmcwhirter
      @klmcwhirter 8 місяців тому +2

      How does autojump compare to zoxide ? Do you know? I just started to use zoxide with fzf integration recently.

    • @lucaggett1603
      @lucaggett1603 8 місяців тому

      @@klmcwhirter I've not tried zoxide, but I looked at the docs a while ago and it seems it is pretty much the same as autojump in terms of functioniality (at least for my usecase)

    • @konstantink07
      @konstantink07 8 місяців тому

      ​@@klmcwhirterzoxide is better

    • @lucaggett1603
      @lucaggett1603 8 місяців тому

      @@klmcwhirter I've used both and they're pretty much identical, zoxide is a bit faster but it's not very noticeable for me

  • @jacobschweiger5897
    @jacobschweiger5897 8 місяців тому +6

    I've been using one I wrote myself called pl. It keeps track of what episode your own when watching offline video series in the terminal and automatically plays the next episode.

  • @jurgenhaan7652
    @jurgenhaan7652 8 місяців тому +1

    My most used console based tools on a daily basis would be the following:
    htop - top replacement (but not as cluttered as btop)
    screen - mainly used to keep long running processes in the background on servers
    ipython - just for writing code snippets quickly
    grep | awk | sed - for general string manipulation in pipes
    vim - text editor
    git | tig - interfacing with git repos
    midnight commander - NC like file manager
    flatpak - jailed package manager
    find - finding stuff and doing stuff to it
    ssh - duh. remote access, socks proxies, piped file transfers, etc.
    So still rather vanilla when tools are concerned. Even though I know there are some improved tools or anything, I do like to use the defaults so I can go at any system without having to install custom stuff.

    • @prvulm
      @prvulm 5 місяців тому

      This! Those new fancy tools are nice to have on own system but when you ssh into customer sles or rhel that maybe dont even have internet access for security reasons, not that much.

  • @Wampa842
    @Wampa842 8 місяців тому +2

    My top 3 most used tools are tldr, LF (TUI file explorer), and sshuttle (routing traffic through an SSH tunnel - a poor man's VPN).

  • @DeathSugar
    @DeathSugar 8 місяців тому +2

    first thing I definitely install is a ripgrep and fd-find - replacements for grep and find. They are magnitude faster than default ones.

  • @CocolinoFan
    @CocolinoFan 8 місяців тому +12

    You should have mentioned that is bad to have two package magnets if you don't know what your doing...

    • @mrpro2264
      @mrpro2264 8 місяців тому

      Except nix it,s really strong useful package manager

  • @goldskula
    @goldskula 8 місяців тому +4

    ranger is a must for me

  • @npaladin2000
    @npaladin2000 8 місяців тому +4

    I tend to prefer ncdu over dust...not as pretty but pretty enough. It also has a 1:1 clone for Windows called gdu, which I just alias to ncdu there for less confusion,

  • @themedleb
    @themedleb 8 місяців тому +5

    Zellij (زليج) is an Arabic word for "tile". It is pronounced the normal way, no need to say "jay" in the end of the word.

  • @wtfisgoingon535
    @wtfisgoingon535 8 місяців тому +3

    Bottom (htop alternative), Starship (powerline), Helix (text editor). I'm also using Zellij and Eza, both are great. And all of them are Rust apps :)

    • @konstantink07
      @konstantink07 8 місяців тому

      starship is slow af

    • @moarjank
      @moarjank 8 місяців тому

      Rust is faster than bash, so in my exp, it's faster than og powerline

  • @MrOrtmeier
    @MrOrtmeier 8 місяців тому +1

    Community recommendation videos are gold for Linux nerds. I always want to find new or better utilities i never knew existed

  • @darthkielbasa
    @darthkielbasa 8 місяців тому +1

    00:01 glances is a game changer. If you’re the dashboard type, has api capabilities

  • @theinhumaneme
    @theinhumaneme 8 місяців тому +13

    We need more videos of this format!!!!

  • @JeroenFallsUp
    @JeroenFallsUp 8 місяців тому +4

    You mention using bat as a replacement for cat, but as someone that actually uses cat to concatenate files I wonder if that would work at all with bat seeing all the fancy stuff on the screen.

    • @lordkekz4
      @lordkekz4 8 місяців тому +2

      You can configure bat's syntax highlighting, line numbering etc. in a config and via commandline parameters.
      But you can still just use cat in these cases, and bat for syntax highlighting and such. It complements cat more than replacing it.

    • @arzaroth1944
      @arzaroth1944 8 місяців тому +6

      I seem to recall that bat detects when piped or redirected and in such cases behaves like cat. I haven't checked in a long time but since I aliased bat as cat years ago and didn't run into this conundrum I'm fairly certain of this.

    • @lordkekz4
      @lordkekz4 8 місяців тому +2

      @@arzaroth1944 Oh, you're right! I didn't even realize it was that smart xD

  • @blainescroggs9268
    @blainescroggs9268 8 місяців тому +2

    I'm gonna have to watch this again and take notes :)

  • @howling-wolf
    @howling-wolf 8 місяців тому +2

    If you already have fzf installed you can configure it ro replace ctrl+r search with a small window similar to the other tool you showed. But it still uses the shell history file. Very simple, very lightweight and blazingly fast

  • @mood_4738
    @mood_4738 7 місяців тому +1

    Zoxide, a smarter cd command. One of the best packages I've ever discovered

  • @XoaGray
    @XoaGray 8 місяців тому +1

    I've been using BTOP for years, but hadn't heard of any of the other programs here, so I'm all for seeing more command line tools. It's often something that's just forgotten nowadays.

  • @le9038
    @le9038 8 місяців тому +2

    Man, ever since I started using bash my life has been getting better and better! I think bash should be installed on every linux computer out there...

    • @konstantink07
      @konstantink07 8 місяців тому +2

      tf are you talking about??? it's literally the default on like 99% of distros already. zsh is better though (at least for interactive usage)

    • @le9038
      @le9038 8 місяців тому +2

      @@konstantink07 Woooosh

  • @gavinjones
    @gavinjones 8 місяців тому +2

    Hstr is pretty similar to atuin which i usually use.
    nnn or n is also good command which lets you navigate folders with arrow keys. Some people mentioned midnight commander which is much more feature packed
    Thefuck is useful if you want to fix previous commands mistake. I have it aliased to oof to avoid showing that if someone else sees me type it lol

  • @gungun974
    @gungun974 8 місяців тому +6

    Why use homebrew when you can just install Nix and have a better package manager that can install pretty much everything and do cool thing.
    Also I don't like homebrew on my mac since it slow, very slow and break some time. Great program but I wouldn't recommend it outside of Mac.

  • @subrezon
    @subrezon 8 місяців тому +3

    A very simple one I use all the time is tree, basically recursive ls that goes inside directories as well.

    • @halfsourlizard9319
      @halfsourlizard9319 8 місяців тому +1

      find exists and produces output that's much easier to process with further commands though.

    • @subrezon
      @subrezon 8 місяців тому +2

      ​@@halfsourlizard9319of course, but tree is easier to process with your eyes if you want to make sense of a directory structure at a glance, thanks to the output having an actual tree, drawn using ASCII box drawing.

    • @TheSast
      @TheSast 8 місяців тому +1

      I use erdtree for that, I find it more exhaustive

    • @halfsourlizard9319
      @halfsourlizard9319 8 місяців тому

      @@subrezon My semi-random cwd has 1559 files it its subdirectories ... and that's a relatively small project. Using eyes and text-visualised structure is only feasible in very small / not very deep dirs. 🤷‍♀️

    • @sodiboo
      @sodiboo 8 місяців тому +3

      i usually use `eza --tree` for this, it's much nicer too look at

  • @RobShinn
    @RobShinn 8 місяців тому +2

    Up arrow? Ctrl+R is your friend. Can't remember the flags you used on that last `tar` command? Just hit Ctrl+R and then type tar. If you hit the wrong one, keep hitting Ctrl+R again until you find it.

    • @PanduPoluan
      @PanduPoluan 8 місяців тому

      Better still, if you use bash or zsh, just integrate fzf into the shell, and fzf will do a fuzzy match against your history.

  • @alxkw6355
    @alxkw6355 8 місяців тому +2

    Powertop is as well very usefull for home servers. If you have one running 24/7.
    10 to 15Watts shaved off of the idle power draw is always good!

  • @matiasbpg
    @matiasbpg 7 місяців тому +1

    Gnu parallel. Don't use it often, but when I have to is awesome. Turns what could have been a script to a line of bash

  • @kuhluhOG
    @kuhluhOG 8 місяців тому +2

    Imo one of the most useful ones is jq
    It least you nicely deal with JSON from the command line.

    • @RevHardt
      @RevHardt 8 місяців тому +1

      There’s yq as well

  • @beardlyinteresting
    @beardlyinteresting 8 місяців тому +3

    Do people not know about ctrl+r? It let's you do a search of your command history, not as feature rich as atuin I'm sure but should come standard in most shells

  • @artim96
    @artim96 8 місяців тому +2

    dust looks interesting. Another du alternative I found was gdu. Kinda a go-written interactive version of du. You can navigate thorugh directories starting from the directory you passed to the command and if so desired delete files and directories from it. And it seems to be a little bit faster than du on slow hardware for some reason.

  • @cxob2134
    @cxob2134 5 місяців тому

    my favorite terminal programs are:
    Ranger: A terminal file manager, best way to navigate directories FAST
    MOC: terminal music player, that just works, no fuss.

  • @sumirandahal76
    @sumirandahal76 8 місяців тому +1

    better cd -> zoxide
    to mount partitions -> bashmount
    tmux etc

  • @ordinosaurs
    @ordinosaurs 8 місяців тому +1

    There's ncdu, a cli command that replaces du without the visual confusion of dust. Fast, simple, and incredbly useful. Can't live without it.

  • @mritunjaymusale
    @mritunjaymusale 8 місяців тому +6

    What about rsync? I think it's better than cp command and it's more reliable and robust when paired with COW file system like ZFS

  • @Daktyl198
    @Daktyl198 8 місяців тому

    Probably my favorite command line utility is the text editor “micro”. It doesn’t try to be anything it’s not. It’s a simple text editor, with familiar keybinds unlike Nano.

  • @severgun
    @severgun 8 місяців тому +3

    5:19 Just press Ctrl+R

  • @FengLengshun
    @FengLengshun 8 місяців тому +1

    I still prefer nix over brew, I especially like to use nix-shell to only get what I need temporarily. With home-manager it can do most of what chezmoi do as well.

  • @Luc484
    @Luc484 8 місяців тому +1

    I use the command line everyday but still I found some interesting things I did not know in your presentation. Excellent work! I really liked it!

  • @neko6803
    @neko6803 8 місяців тому +4

    POSIX-Stans will hate me: Fish as my shell of choice for dailydriving has recommendations from your entire shell history that get shown and altered while you type the command

    • @konstantink07
      @konstantink07 8 місяців тому

      you might as well set python as your default shell...

    • @moarjank
      @moarjank 8 місяців тому

      Also, use can use "bass" to get closer to POSIX compatibility, and to source bash profiles

    • @__Brandon__
      @__Brandon__ 7 місяців тому

      Zsh will do this too, but won't break every shell command you know and love

    • @neko6803
      @neko6803 7 місяців тому

      @@__Brandon__ there is always that one guy who will recommend Z-Shell when someone else talks about fish... do you folks not realize that others like me run fish partly to spite and troll you?
      Also, some people are just not in the mood of writing their own config or testing 6 million different ones to fin the features they like. You could make bash do 90% of what fish offers out of the box too but where is the point of trial-and-error-ing a custom config for whatever shell if i could just use fish and know it works the way i want it to? It makes smart suggestions, colours commands in a way that improves readability and it does so without me having to configure it. I can update my system all other stuff that i need the CLI too works just as well in fish with the same commands as if i was running bash, ash or zsh. Scripting in Fish, yes, thats differently but out of the box, neither bash or zsh work as well as fish. Especially for users unfamiliar with reading CLI-Text... "But muh Posixcompliancy 😭😭😭" - I do not CARE about posix, i once wrote an Archinstallerscript in Powershell just because i wanted to send it to someone who i knew would be offended upon seeing it😂

    • @moarjank
      @moarjank 7 місяців тому

      If worried about compatibility, bass is great. (I used to be an avid zsh user, but it's soo overbearing to configure. fish just works, and has better syntax anyway)

  • @RenderingUser
    @RenderingUser 8 місяців тому +3

    "battop" best battery info viewer

  • @laesseV
    @laesseV 8 місяців тому +1

    fzf can also search through your command line history with CTRL-R

  • @JeffHeon
    @JeffHeon 8 місяців тому +13

    Wow! I used homebrew on Mac, but didn’t realize I can also install it on Linux! Thanks 🙏

    • @halfsourlizard9319
      @halfsourlizard9319 8 місяців тому +8

      Why would you want to use brew when you could use an actually-competent package manager?!

    • @JeffHeon
      @JeffHeon 8 місяців тому

      @@halfsourlizard9319Choosing and installing the versions I want without mucking up the global installation is compelling to me. You also don't need sudo. Plus, I got used to use brew on Mac.

  • @amigalemming
    @amigalemming 8 місяців тому

    Terminal history: I am used to type a prefix of an old command line and then cycle through all commands in history with that prefix using PageUp and PageDown. Works after enabling the corresponding settings in /etc/inputrc. Was the default in SuSE.

  • @aromaticsnail
    @aromaticsnail 8 місяців тому

    For the terminal command history, I prefer using hstr, very simple to use, probably not as advanced as atuin but for basic stuff works well;
    To complement tldr: halp

  • @henriquearaujo558
    @henriquearaujo558 2 місяці тому

    Great video! I hope you do this format (bringing community's suggestions) more often

  • @howling-wolf
    @howling-wolf 8 місяців тому +1

    instead of dust, i like to use ncdu. It analyzes all files beforehand and allows you to navigate the filesystem with arrow keys. It is a great tool to dinf the dirs that eat ur drive space.

  • @FrontLineNerd
    @FrontLineNerd 8 місяців тому +1

    Wow. Atuin is completely awesome.

  • @trevorford8332
    @trevorford8332 8 місяців тому +4

    The one I came across was notify-send, not as powerful as some of them but worth a look at.

    • @TheLinuxEXP
      @TheLinuxEXP  8 місяців тому +1

      Very nice as well!

    • @tercmd
      @tercmd 8 місяців тому +3

      I use notify-send every single day to notify me after my software is updated (apt, snap, flatpak). Doesn't work flawlessly, but nice as an easy signal

  •  8 місяців тому +1

    So in case somebody doesn't want to install a database, if you press Ctrl+R and then type something, it will search it kn your command history. It is fast and useful and better than pressing Up 200 times

  • @Little-bird-told-me
    @Little-bird-told-me 8 місяців тому +1

    *Just when I thought I knew a lot about Linux, you broke my myth and I am glad you did. Thank you and more of it please !*

  • @TanmayGoel-g2v
    @TanmayGoel-g2v 8 місяців тому +2

    TMUX in my opinion is also a great cli tool

  • @seymourtoa
    @seymourtoa 8 місяців тому +1

    EXCELLENT list and quick reviews! much appreciated! side note - now I'm gonna be busy tonight trialing all these little nuggets of Linux beauty!

  • @pmccarthy001
    @pmccarthy001 8 місяців тому +1

    Tab with atuin... glad you mentioned that. I had installed it, but couldn't figure out how to do anything with it besides running the command as-is. Serious case of tldr...

  • @biscotty6669
    @biscotty6669 8 місяців тому

    Funfact: Zellige is a style of tiling from Morocco.
    Also: `nix-env -i ` instead of homebrew

  • @drzmuhammed
    @drzmuhammed 8 місяців тому +1

    fzf atuin dust btop are new additions to my bucket.... we need more videos like this.... these are the grass root level.. and make us productive...... I basically use derived output from commands of core packages to display in waybar. Use calcurse , Ranger , atool, nmtui, top etc... basically trying to live in a terminal with some flatpak app for my study related stuffs.

  • @novaTopFlex
    @novaTopFlex 5 місяців тому

    btop is not the only utility with the said interface, just the C++ version of it. Also developed by “aristocratos” and available in various repositories are the “bashtop” (for Bash) and “bpytop” (for Python) commands.

  • @sp10sn
    @sp10sn 5 місяців тому +1

    Hell yeah. I saw that Neverwinter Nights folder :D

  • @NotcardNotLive
    @NotcardNotLive 4 місяці тому

    doas is almost a must have, sudo is kinda complicated to fix and doas is more lightweight, its worth it to try

  • @jamesbond_007
    @jamesbond_007 5 місяців тому

    Of course, typing ^R and then doing an incremental search through your history is already built-in to bash. To search again if you didn't find what you wanted, type ^R again while in ^R mode to find the previous occurrence of your search string. And, since it's incremental, the search automatically updates when you add or remove (or change) characters. [This is in response to Atuin]

  • @daxtheducknotaffiliated
    @daxtheducknotaffiliated 8 місяців тому +4

    Atuin is also one of the greatest Terry Pratchett references ever. For those who don’t know, Atuin is a giant, space-wandering turtle, holding four hefty elephants on its shell, which in turn hold the disk-world on their backs. I can highly recommend the discworld novels. The farther along you get, the more entertaining they are (you also don’t need to read them in order).

    • @ClokworkGremlin
      @ClokworkGremlin 8 місяців тому

      Please do yourself a favor and DON'T install Atuin! My command history is permanently broken now!

  • @user-he8qc4mr4i
    @user-he8qc4mr4i 8 місяців тому +2

    no need to use atuin you can use fzf too!

  • @SeaWasp
    @SeaWasp 8 місяців тому +1

    tldr and thefuck are my most used new cli tools. Like another commenter mentioned, if you mistype a command, you can type "fuck" out of frustration at the terminal and it'll try to give the right command! It hasn't made a mistake yet