Тёмный

10 Linux Terminal Tips and Tricks to Enhance Your Workflow 

Learn Linux TV
Подписаться 757 тыс.
Просмотров 96 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 169   
@toweliethetowel8280
@toweliethetowel8280 Год назад
What helped me at the beginning was the discovery of "!!". If you forgot "sudo" in front your command you can type "sudo !!" and it adds the last command after the "sudo ".. Saved a lot of nerves :)
@evgen4681
@evgen4681 Год назад
alias fuck="sudo !!" 😂
@mrklean0292
@mrklean0292 Год назад
Great video, I have been a RHEL, Sun Solaris, AIX Sys Admin off and on for about 17 years now, and I would have to say that I have learned more from your videos and the comments, both good and bad, in the past year (I think I just discovered your videos about five months ago). I have read tons of books and watched more videos on Linux systems admin than I can remember, but not all of it would stick. The way you demonstrate and put things just makes sense. Thank you. I really wasn't an Ubuntu user, mostly because I worked mainly with RHEL since 2005, but I recently started using Ubuntu Mate on one of my personal lab setups and really like it, I haven't bought a Linux admin book in years now because I just wasn't really learning from them. But, because of the way your videos are done, I am going to buy your book because I feel that it would be a far better reference than any of the previous books I have sitting on my shelves, well, with the exception of "Unix and Linux System Administration Handbook", there are so many good nuggets in those books.
@AlazTetik
@AlazTetik Год назад
Hello, I have a question for you based on your experience. Actually I have worked as a chemical engineer for over 7 years and now planning to change my career into software. What jobs can I look for in the Linux related job market? I have been using several Linux distros on my personal computers since 2006 (Ubuntu, Pardus, Mint, Manjaro, Fedora). I can build some projects with React (JS), Express (Node) and MongoDB + MySQL, and I know how to write some basic stuff with Golang, Java, Python.
@mrklean0292
@mrklean0292 Год назад
@@AlazTetik Even though I have been a systems admin, a lot of the work I have done has been more database related, creating reports for our company and maintaining our internal website which we built with PHP, I worked/work on the back end of the site. I have many other skill sets that were/are necessary to fulfill this position, but to really answer your question, it's really up to what you are looking to get into. I see DevOps as one direction you could go into. I started off in a small software dev company which had been bought out several times until it is now, or it was at least part of one of the largest companies in the world. While I was there I saw people move around constantly from one position to another. I moved from software QA testing to systems administration, where I mainly administered RHEL and Sun Solaris servers, and I performed Oracle database admin tasks. That was before DevOps, I don't know a lot about DevOps, but it seems to be where a person performs many of the things you have been working on along with other task including sever admin work.
@CDE.Hacker
@CDE.Hacker Год назад
Aliases are great. Been using them for a while. I would recommend a naming convention for aliases. I like to capitalize the first letter of each command to indicate it's an alias. I find that very helpful.
@AlazTetik
@AlazTetik Год назад
Yea, a nice convention, I will apply that, thank you 🙋🏻
@hootiebubbabuddhabelly
@hootiebubbabuddhabelly Год назад
good idea - I used "w" for a weather alias and lost the "who" details you get with it - IOW, check that you're not losing another function before you make it permanent. I'm going to make aliases for session settings specific to whatever tasks I'm focused on.
@tralphstreet
@tralphstreet Год назад
Your solution to not see the verbose warning messages when opening audacity is just to drop them in another terminal session. What's better is to send the output to /dev/null audacity &> /dev/null & &> redirects both stdout and stderr, dev null is a special device where you can send stuff, it's basically a void. The last ampersand just puts the program in the background, it's optional.
@RamGnus
@RamGnus 10 месяцев назад
Thank you for sharing your knowledge. I'd like to see a entirely video about customize Bash prompt.
@SpiceMinesGaming
@SpiceMinesGaming Год назад
FYI: The link to the blog post in the description is not working.
@SpiceMinesGaming
@SpiceMinesGaming Год назад
I just checked today, and the link appears to be working.
@AlazTetik
@AlazTetik Год назад
My ultimate go-to place for Linux related stuff for the last 4 years. Thank you 🙋🏻
@Last_day_events
@Last_day_events Год назад
- Official blog post for this video ➜ learnlinux.link/terminal-tips = 404
@MikeKranidis
@MikeKranidis Год назад
Same happened to my browser...
@thegreyfuzz
@thegreyfuzz Год назад
same here
@leonardshand7845
@leonardshand7845 Год назад
Same here. Two days laterrrr, still nothing
@leonardshand7845
@leonardshand7845 Год назад
Working now...3 Nov. Yay!!
@chyldstudios
@chyldstudios Год назад
You don't need the space at the end of your alias. It works just fine with no space. Try it.
@llortaton2834
@llortaton2834 Год назад
because the space in included elsewhere in the command yes
@unbekannter_Nutzer
@unbekannter_Nutzer Год назад
@@llortaton2834 Because you have to separate the alias, i.e. "i" with a space from the program to install, i.e. "nano" like this: "i nano". So there is already the requiered space. In contrast "inano" would not work, whether the alias is defined with trailing space or not.
@shanent5793
@shanent5793 Год назад
Omitting the space would suppress alias expansion of the next word on the command line
@unbekannter_Nutzer
@unbekannter_Nutzer Год назад
@@shanent5793 I couldn't believe this, tried it out, and you're right, I stand corrected. Thanks.
@nathanmiddleton1478
@nathanmiddleton1478 Год назад
@@shanent5793 So then it's not *needed* it's just something you might prefer to have for some aliases, yeah?
@ringoschubert4966
@ringoschubert4966 Год назад
A nice alternative / extension to using aliases is to define your own bash functions. U can also do this in your ~/.bashrc or ~/.bash_aliases file. It has it's advantages, if you not just want to substitute commands for something else, but do some slightly more complicated things. (Like putting our parameter in the middle of a command string...) An example would be a small command to insert a (configurable) horizontal rule into your terminal: function hr() { printf '%*s ' "$(tput cols)" ' ' | tr ' ' $(if [ -n "${1}" ] ; then echo -n ${1} ; else echo -n '-' ; fi ) } try: hr hr '#' hr '='
@sidheart8905
@sidheart8905 9 месяцев назад
great thanks
@TheChadXperience909
@TheChadXperience909 Год назад
For your speedtest alias, you could add "&& nslookup " to verify you don't have a DNS issue. Maybe even add a ping to veify you are able to reach the modem/firewall, etc.
@vudu5vudu
@vudu5vudu Год назад
Nice list. Here's a tip for you. In Nano, CTRL + END takes you to the end of the file. =)
@mohcine2259
@mohcine2259 Год назад
the link for the official blog post for this video is not working
@noweare1
@noweare1 5 месяцев назад
I just learned that every time you start a new shell ./bashrc is run. You could also put it higher up the food chain in /etc/profile which is executed whenever any user logs in.
@7K2LGO
@7K2LGO Год назад
Hello from Japan. Thank you for great educational videos. I love your Japanese writings on the wall and Daibutsu!
@RandyHanley
@RandyHanley Год назад
2:25 - I like your slide transition sound. It sort of reminds me of the spawning sound in Quake 1 Original!
@scottb4029
@scottb4029 Год назад
loved the video. Tmux is one of the best CLI applications bar none, and your series on it is awesome. One of the things that kept coming to me during the video was , why not use a CLI file manager, like ranger, lf, nnn or Midnight Commander. (maybe not the last one). ?
@stevew270
@stevew270 9 месяцев назад
Type in a really short command, sl for steam locomotive in whatever distro you're using and just type sl after and a steam locomotive will travel across the screen, I think it works in most distros.
@RickRomig
@RickRomig Год назад
Working from the code in the video I was able to put the PS1 prompt together and integrate it with my .bashrc and include a function to parse my git repositories.
@knightone57
@knightone57 Год назад
I am from Michigan and now live in Mo and the weather here is just as crazy.
@dhall2420
@dhall2420 Год назад
" Official blog post for this video" reports page not found
@dreetjeh
@dreetjeh Год назад
Hi, i see you have if ~/.bash_aliases then...., can put them there, keeps .bashrc clean
@vanadium4167
@vanadium4167 Год назад
For sure! This is much neater practice, especially if you have quite a number of aliases. And it reduces the possibility that you introduce errors in .bashrc itself.
@unbekannter_Nutzer
@unbekannter_Nutzer Год назад
@@vanadium4167 What's the advantage of having errors in bash_aliases compared to .bashrc?
@vanadium4167
@vanadium4167 Год назад
@@unbekannter_Nutzer you are not messing up the main file. Not accidentally deleting something else, etc
@unbekannter_Nutzer
@unbekannter_Nutzer Год назад
@@vanadium4167 Well - how should defining an alias delete something else? Not plausible. And "messing up the main file" - depending on how many aliases I have and how they are organized. A weak reason, but at least something.
@kbbenton7792
@kbbenton7792 7 месяцев назад
It also makes it easier to “alias >~/.bash_aliases” putting all your aliases in a single file all at once.
@Nephv2
@Nephv2 10 месяцев назад
I know this video is old, but a really easy way to add aliases to you bashrc without actually going in in editing it is this command: echo 'alias newAlias="{command}" >> ~./bashrc this will append that alias to the end of your bashrc file stright from the terminal :)
@busdriver1261
@busdriver1261 Год назад
I store all my defined aliases in ~/.bash_aliases which searched for and loaded if present from the ~/.bashrc file (at least it is in Linux Mint). I find it a better way of doing it without cluttering up the .bashrc file. I do like the ~/.bash_prompt idea.
@jb31842
@jb31842 Год назад
In fact it's from at least Ubuntu (and maybe underlying Debian). The code in .bashrc to source .bash_aliases was right there on the screen... I was hoping he would at least mention what it was for, and that you might consider using a file like that.
@LacerdaJPF
@LacerdaJPF 7 месяцев назад
hi friend, Thank you for the info. You do have a great and useful channel.
@dragonwood4562
@dragonwood4562 6 месяцев назад
Just found this video. Been using the channel for a while for learning. Anyway, an alias I added and love is for running updates. I used: alias u="sudo apt update -y && sudo apt upgrade -y" This will (after I enter my password if prompted) run update and upgrade and not stop to ask me to enter the y.
@llortaton2834
@llortaton2834 Год назад
The blog post is not online and we cannot copy from it at the moment :(
@tgmct
@tgmct Год назад
Still waiting...
@llortaton2834
@llortaton2834 Год назад
@@tgmct it works now!
@inuinu902
@inuinu902 Год назад
can you make a video on fully optimize the bash prompt since is hard to change the colors + i like to see what can by added to the prompt. automatic bash prompt makers are not really that great
@amortalbeing
@amortalbeing Год назад
goodcstuff thanks jay
@phantom2k858
@phantom2k858 8 месяцев назад
FORTUNE mod is a savage i love it The hair ball blocking the drain of the shower reminded Laura she would never see her little dog Pritzi again. -- Claudia Fields, runner-up
@chrismcdonaldracing
@chrismcdonaldracing Год назад
The tip on easyer chest sheets is great for everyday use. But on a side note if your studying for any certs such as RHSA like me you might not want to get into a habit of using anything but man pages as that's the only aid your allowed to use in the exam.
@jenselstner5527
@jenselstner5527 Год назад
Hi there, cool video. For detaching a process from bash better use setsid, like "setsid audacity 1>/dev/null 2>/dev/null", maybe a bash function -- or if you start always the same program -- an alias will suffice. ;o) A function would be like this: function x() { setsid $1 "$2" 2>/dev/null 1>/dev/null ; } An alias like this: alias audacity="setsid audacity 1>/dev/null 2>/dev/null"
@divelix2666
@divelix2666 Год назад
42:00 - I use Ctrl+Z, in this case you dont need & while launch. How is it differ? If there is no difference nder the hood, Ctrl+Z is more convenient, imho.
@davetempleton9643
@davetempleton9643 2 месяца назад
Many thanks. Very interesting video. I am stumped on the bash prompt. Like you I like to understand what is going on. I do not understand the line variable's with the following syntax: LINE_BOTTOM_CORNER="\342\224\224". I have spent hours searching the internet and cannot locate a reference for the command meaning. I have found nn as an octal. Can you point me to a source for this? Clearly I am not using the correct terminology as to what it is, or I would have found something about it. any help is greatly appreciated.
@LordNaver
@LordNaver Год назад
thanks.. pls make video on customizing bash prompt
@dogday92
@dogday92 Год назад
always educational content, quick question: how what command saves the files created?
@rupehmuduli3826
@rupehmuduli3826 Год назад
I jus fell in Love with Linux Tv
@haxwithaxe
@haxwithaxe Год назад
There are a bunch of mods (separate packages in debian at least) for fortune including some vulgar ones. It's fun every once in a while.
@PS_Tube
@PS_Tube Год назад
Creation of aliases in a separate file is better practice!
@unbekannter_Nutzer
@unbekannter_Nutzer Год назад
Why?
@PS_Tube
@PS_Tube Год назад
@@unbekannter_Nutzer As fast my go plan is In this case you don't have any slightest of chance of accidentally messing up .bashrc.
@brandon_wallace
@brandon_wallace Год назад
@@PS_Tube You can put all your changes at the bottom of the bashrc file to override anything above. No need to have a separate file.
@afrokai
@afrokai 6 месяцев назад
comcast is always the culprit >_>
@MichalPiotrEliaszKrajewski
@MichalPiotrEliaszKrajewski 8 дней назад
it's strange because my aliases were not recognized, and they are saved where you have them, I have to create them again even though they are saved
@TheStevenWhiting
@TheStevenWhiting Год назад
1:42 Does it last 60 days IF you don't spend it or does it just last 60 days so if you choose a cheap package, you only get 2 months free then the $100 is used even if you're cheap package is only like $5 a month package? Because $5 / 100 would be 1 year 8 months. But sounds like you really only get 2 months free is that right?
@yaroslav7328
@yaroslav7328 Год назад
Don't you use nohup before starting the desktop application to avoid junk outputs?
@thomascorbin5371
@thomascorbin5371 Год назад
I like wthrr for weather. very pretty
@LearnLinuxTV
@LearnLinuxTV Год назад
I wasn't aware of that one, thank you for sharing that.
@dbaldock9
@dbaldock9 Год назад
Currently at work, where I have Cygwin running on a Windows 10 Enterprise PC. When trying to use your custom bash prompt, I see two error lines, both saying "-bash: $' ': command not found" followed by a line with a closing square bracket "]" and the name of the machine. Not sure where to start troubleshooting, but I believe that Cygwin may require slightly different character escaping, than a terminal on "real" Linux (at least that's what I seem to remember from some previous awk scripting that I've done).
@dbaldock9
@dbaldock9 Год назад
Found the issue - Notepad++ was set to use Windows EOL (in order to save some text files to import into a label printer), but once I set it to Linux EOL for the .bash_prompt file, the new prompt is working just fine in Cygwin.
@benmcwhirter4566
@benmcwhirter4566 Год назад
alias . ="cd ../"
@johnvardy9559
@johnvardy9559 Год назад
Do you know why don't find camera?no device found
@denisdubochevalier2829
@denisdubochevalier2829 5 месяцев назад
1. You don't need the space at the end of your aliases 2. NEVER EVER RUN A SCRIPT DIRECTLY FROM THE INTERNET (the speed test thing), this giving direct access to your computer to anybody for remote code execution. And don't run scripts, even downloaded, unless you are sure to understand what they do.
@Hostile92YT
@Hostile92YT Год назад
How to run a Tcl Byte Code (.tbc) encrypted file
@dilanparadis741
@dilanparadis741 Год назад
Your speedtest example show you Comcast IP ... might want tu blir it 🤷‍♂️
@wuggyfoot
@wuggyfoot Год назад
i fee l like i enhanced my workflow by watching this 45 minute video
@voiceoftreason1760
@voiceoftreason1760 Год назад
Can you share your tmux config you are using here?
@SirFancyPantsMcee
@SirFancyPantsMcee Год назад
Can you make aliases turn on with a command? So anytime you log in you type ua or something.
@SuprousOxide
@SuprousOxide Год назад
you could write a function to do that. in .bashrc, the same place he added the aliases, you could enter ua() { alias e="nano" alias d="ls" } then when you type ua in the prompt it would enable the aliases. You could include a second function to remove the aliases with ra() { unalias e unalias d }
@SirFancyPantsMcee
@SirFancyPantsMcee Год назад
@@SuprousOxide You are awsome thank you so much
@pberto
@pberto Год назад
You didn't explain how to use sudo without entering a password, even if I suppose you edited you /etc/sudoers file.
@GaryCameron780
@GaryCameron780 Год назад
Likely because he had used sudo within the previous 15 minutes or whatever the timeout value is for his account.
@seanrikard3163
@seanrikard3163 Год назад
The proper place to put aliases is in the .bash_aliases file.
@helloimatapir
@helloimatapir Год назад
I disagree. How many aliases do you have that require their own file? Put them at the bottom of your bash or denote a section for them with comments.
@jokinboken
@jokinboken Год назад
@@helloimatapir I have 53 aliases in my .bash_aliases
@vicmac3513
@vicmac3513 Год назад
I have a separate alias file and alias 'aliasrc' opens my alias list in vim.
@nathanmiddleton1478
@nathanmiddleton1478 Год назад
I use aliases all the time and never put a space at the end. Why are you? At least for bash, "help alias", there isn't any requirement for it. In the late 90s was this a thing? I don't remember it's been so long ago but certainly now it isn't needed.
@b00m3rh4nd_sol
@b00m3rh4nd_sol Год назад
zsh?
@terrorpup
@terrorpup Год назад
It seem you like read a few pages that people did pass for or a master linux book. Nothing new.
@sergiodeplata
@sergiodeplata Год назад
Shortening commands to one character is very dangerous, as any typo can lead to potentially destructive behavior. Autocompletion with tab key is much safer.
@brandon_wallace
@brandon_wallace Год назад
I cannot think of any commands that would be dangerous as a shortcut other than the "rm" command. What is very dangerous for you?
@Carlos-tw6uc
@Carlos-tw6uc Год назад
Official blog post is 404 ...
@LearnLinuxTV
@LearnLinuxTV Год назад
Fixed, sorry. I'm at a convention currently.
@BeeRich33
@BeeRich33 Год назад
tldr Check that out.
@williamfletcher5146
@williamfletcher5146 Год назад
I feel like this is teaching people bad things
@XPFTP
@XPFTP Год назад
NP - sudo install NEW PRESIDENT............... hahhahaa
@kbbenton7792
@kbbenton7792 7 месяцев назад
PATH=$(find / -name bin -type d -print 2>/dev/null | paste -s -d : -)
@kbbenton7792
@kbbenton7792 7 месяцев назад
This one is useful for when you’re on a new system. Not a best practice, but useful.
@HadToChangeMyName_YoutubeSucks
Dang man, how can you mention fortune without mentioning cowsay/cowthink? fortune | cowsay is much more fun. And you can install a cli speedtest in most repos I think, just sudo apt install speedtest-cli (run it as speedtest). The means you mentioned would certainly be useful if you can't or don't desire to install something on whatever machine you're working on, but having it installed is much nicer if you can.
@tristenr1293
@tristenr1293 Год назад
fortune | cowsay I prefer my fortunes to be told by cows.
@thomulcahy
@thomulcahy Год назад
Blog link is broken
@thomulcahy
@thomulcahy Год назад
fixed now :-)
@TheChadXperience909
@TheChadXperience909 Год назад
For your install alias, you could also add "-y".
@mikejones7990
@mikejones7990 Год назад
My prompt actually tests the outcome of the previous command--if it is successful, my prompt is green, if it fails, my prompt turns red. I put it in my .bashrc file. GREEN='\[\033[32m\]' RED='\[\033[31m\]' NC='\[\033[37m\]' PS1="\u@\w \`if [ \$? = 0 ]; then echo ${GREEN}:\\\)${NC}; else echo ${RED}:\\\(${NC}; fi\`"
@pachaas_tola
@pachaas_tola Год назад
FYI - The link to the blog post isn't working.
@seanrikard3163
@seanrikard3163 Год назад
Also, the blogpost link for this video is broken.
@DJSammy69.
@DJSammy69. Год назад
What is that funky PC behind you that has massive RGB cable inside?
@luciaocananieto1643
@luciaocananieto1643 Год назад
(Spain) Hello, very good job. The weather has been very curious to me. The fact is that I am from Spain but not from Madrid but from Almería. Is there any way to configure it so that it appears in Almería and in Spanish? Thanks.
@rkolibri96
@rkolibri96 Год назад
Append this at the end of your link /Almeria?lang=es
@jim7smith
@jim7smith 16 дней назад
Great video, Jay. On the issue of keeping your aliases, the best way I have found is to put them into the ~/.bash_aliases file which if it exists is automatically loaded by the .bashrc when it runs at login. In fact, I keep a .bash_aliases in my git repository so I can easily add it to a new server or desktop.
@tgmct
@tgmct 26 дней назад
[HELP] I've been using a modified copy of your bash_prompt for a while and really like it. My problem is, how can I create a bash script to create the bash_prompt file in a new environment? I'm trying to create a master script to create new environments in proxmox and niceties line nfs or other file transfer protocols are not available yet. What I'm running into is that the ANSI codes are being translated while trying to create the data to pass as text to the new script I'm trying to create on the fly. Any thoughts?
@DanCalloway
@DanCalloway Год назад
Jay, great video! I already had many of these, but there was one or two that I didn't. Thank you for all that you do. Sorry I couldn't make ATO 2022 this year. I was hoping to get you to sign my "Mastering Ubuntu Server, 3rd ed." book which I purchased a year or so ago. Maybe next year. Take care.
@LOLZpersonok
@LOLZpersonok Год назад
I must say that I am now a big fan of the alias command (as well as adding it to your Bash config) and wish I knew about it sooner. I always like to update my system by going “sudo apt update && sudo apt upgrade -y && flatpak update -y” and typing that out so often is rather tedious, now all I do is “update” and away it goes!
@Pshock13y
@Pshock13y 9 месяцев назад
I also added ""&& paplay " to the end of my update command so that I get a little notification when it is done.
@SoniaChavez-je7hq
@SoniaChavez-je7hq 8 месяцев назад
Very helpful, thank you!
@yorkshireplumbing
@yorkshireplumbing Год назад
Just not ever had aliases really mentioned to me before, but in my case would be super useful for spinning up and down groups of Docker containers, "arr-up / arr-down". I've seen people use 'll' which translates to 'ls -al', so that's already added. I have the weather tip added also, as 'weather'... super super cool 😁
@Hostile92YT
@Hostile92YT Год назад
how to run a tbc encrypted file
@githaigagitonga3856
@githaigagitonga3856 Год назад
what is the terminal you're using?
@CMB696
@CMB696 Год назад
Where is his custom terminal link ?
@TamilSelvan-sk9gy
@TamilSelvan-sk9gy Год назад
Please do git series for LInux
@smhhoseinee
@smhhoseinee 5 месяцев назад
Always Excellent
@chillnacho
@chillnacho Год назад
I'm getting a "page not found" for the blog post :(
@LearnLinuxTV
@LearnLinuxTV Год назад
Fixed.
@SoniaChavez-je7hq
@SoniaChavez-je7hq 8 месяцев назад
Very helpful, thank you !
@SoniaChavez-je7hq
@SoniaChavez-je7hq 8 месяцев назад
Little tricks I didn't know
@arxaaron
@arxaaron 8 месяцев назад
RE the bash prompt configuration at 17:10: Note that the Mac OSX Terminal doesn't follow conventions for .bashrc. Instead, opening a new terminal uses ~/.bash_profile for configuration. To make the prompt work on Mac, just create a ~/.bash_profile with the "source ~./bash_prompt" line in it (see video at ~19:20).
@pilliozoltan6918
@pilliozoltan6918 10 месяцев назад
nohup should be here too
@LearnLinuxTV
@LearnLinuxTV 10 месяцев назад
I agree and I’ll consider that for the future
@Zmit
@Zmit Год назад
Save yourself the hassle of going back and forth from desktop app to terminal window by appending your terminal command for the desktop app by "disown": ~$ audacity & disown This will break the parent link to the terminal window process.
@S7EVE_P
@S7EVE_P Год назад
Brilliant video, so many useful tips and I learnt some new stuff. I like your presenting style as well. Thank you :)
@jasonbaldini
@jasonbaldini Год назад
I actually use the files referred, you can see it’s right above where you entered aliases in .bashrc, (if exist) .bash_aliases just so I have a specific file, plus seems like they kind of planned it that way, and I forget what federa uses but I do that same thing there.
@Mr3X7R3M3
@Mr3X7R3M3 Год назад
First I’ve heard you also living in Michigan. Not many people I’ve met in the mitten that actually daily Linux
@romancvijanovic7130
@romancvijanovic7130 Год назад
On my private device I use aliases to set up the backlight brightness of my laptop. My GUI of choice is Mate. Another one is "openssh ssl -showcerts -connect". In a project I used that one fairly often so I used an alias for it. Other than that if there are scripts I use often (for example at my job) I use aliases to access them quickly from anywhere with aliases.
@magusfire31
@magusfire31 7 месяцев назад
The last tip I love. Launching apps from terminal looks a lot easier the going thru menus
@PaxHominibusBonaeVoluntatis
Nice Edifier bookshelf speakers - How about the sound reproduction ?
Год назад
Second time I ear about your Ansible videos, Network Chuck
@BohdanShept
@BohdanShept Год назад
Hello How to know in your prompt if I am a root user "#" or not "$" ?
@assgex
@assgex Год назад
Thank you for those tips, some were very useful!
@stoneytech5434
@stoneytech5434 Год назад
Thanks for this great video. Just a quick question (it might be stupid) - Would running "source " be an alternative to "reset"?
@haxwithaxe
@haxwithaxe Год назад
Nope. It would only redo the things in the bashrc. reset does a lot more to get rid of terminal state.
@blackfaithdoom9018
@blackfaithdoom9018 Год назад
alias ls="date; ls"
Далее
Linux Crash Course - Understanding Logging
29:10
Просмотров 49 тыс.
Learn Linux Faster with These 10 Simple Tips
19:13
Просмотров 368 тыс.
Witch changes monster hair color 👻🤣 #shorts
00:51
Катаю тележки  🛒
08:48
Просмотров 225 тыс.
Linux Command-Line Tips & Tricks: Over 15 Examples!
31:37
De-Google Your Life - Part 1: Start With Chrome
19:31
Modernize your Linux Storage with btrfs!
46:34
Просмотров 150 тыс.
12 GREAT command line programs YOU recommended!
16:25
Просмотров 266 тыс.
5 Common Mistakes New Linux Users Often Make
11:49
Просмотров 123 тыс.