Thank you so much for your channel! I sent it to all my students to learn linux CLI basics, as I'm giving a course about it every year. Happy linuxing!
@dragonfly-7Ай бұрын
I have a little -just a tiny little - experience in various shells. But the 14+ minutes I spent here had been the best wrapup I've ever seen. This contribution will become linked to for newbees asking for support from my end. Thanks a lot ! There are a three little remarks though: (1) the "-A" option of "ls" does show "almost all" - ". and ".." are not displayed in this case. (2) If you mention the original pager "more" and the humour of the GNU people you might understand the reason for calling the pager application "less" in the Linux word. (3) Speaking about GNU: "info" is for sure the 2nd source if "man" is not able to provide suitable information on a command ...
@BreadOnPenguinsАй бұрын
Thanks so much for commenting and for the corrections/remarks!
@mikloscsuvar60972 ай бұрын
This was very practical, well paced, calling attention to failure prevention. All in all you are a very good advovate for the cause and mentoring newcomers.Even your non-sopran voice help keeping myself on the track.
@BreadOnPenguins2 ай бұрын
Thank you! I appreciate the comment :-)
@winston13ism2 ай бұрын
Thank you so much really helpful. Amazing how you structured all the info!!
@BreadOnPenguins2 ай бұрын
No problem! :-)
@shawnlowery62463 ай бұрын
Thank you for this.
@BreadOnPenguins3 ай бұрын
You're welcome - thank you for watching!
@shadowfan19994 ай бұрын
thanks this was pretty helpful. ive been using ubuntu and popos and i want to move to arch but i dont know commands very well yet.
@BreadOnPenguins4 ай бұрын
No prob! Awesome, I did also make a new-user guide to installing Arch so that might help you out.
@BreadOnPenguins4 ай бұрын
Here's my bash prompt if you wish to use it, since having a cool green prompt will give you far more l33t skillz than just learning commands :)) export PS1="\[\e[38;5;34m\]\u\[\e[38;5;40m\] ›\[\e[38;5;46m\] \[\e[38;5;154m\]\w \[\033[0m\]$ "
@shadowfan19994 ай бұрын
lol
@NotSionnix3 ай бұрын
Really random question but did you type the ~ key without using the shift modifier at 1:30? If so whats the secret? It would make working on a linux machine so much nicer xD Great videos been watching since your arch linux install vids!!
@BreadOnPenguins3 ай бұрын
I don't have that bound atm but I would try remapping that key (or any other) with xbindkeys to execute " xdotool type '~' " Depending on what you're using there might be a couple other ways to do it as well, if you wanted to you could even set up a custom kb layout. Thanks so much, I really appreciate it! :^)
@vinay_dias3 ай бұрын
informative thanks
@BreadOnPenguins3 ай бұрын
No prob - thanks for watching!
@vinay_dias3 ай бұрын
@@BreadOnPenguinsNo prob - thanks for uploading
@DiscipleWhomJesusLoves4 ай бұрын
Hello, awesome channel. Can I ask You a couple of questions? I want to install ArchCraft. I want to swap from Windows. - Is Arch secure operating system if I need Privacy and Security? - Is there any commands I should go through after installation other than: "sudo pacman -Syyu"? - Could You do video about Firewall Settings and Ports. Some kind of guide how to gain maximum security, and how to set it up to close all the ports that are not needed :) Thanks! :) All the best :)
@BreadOnPenguins4 ай бұрын
Hello, thank you! For a privacy and security focused Arch installation I would recommend using LUKS and dm-crypt to encrypt your system. You would do this as part of the installation process. Arch is very secure if managed properly, as you've said updating regularly will help keep it secure. The Arch wiki has a great article about best practices for maintaining a secure system - wiki.archlinux.org/title/Security For firewalls, you can use either iptables or nftables; there are many frontend options but some common choices would be firewalld or ufw. You can use the ss utility (similar to netstat) to view ports, so ss -tl for checking open ports. You can then disable unneeded ports, for example with ufw, sudo ufw deny port#. Hope that helps you out, and likewise all the best :)
@DiscipleWhomJesusLoves4 ай бұрын
@@BreadOnPenguins Yes, thank You!
@salimnasser45414 ай бұрын
Can you rice Linux a virtual box ?
@BreadOnPenguins4 ай бұрын
I'll make a video about ricing/customization soon! Ricing Linux in a virtualbox works the same as it does in a non-VM environment. Thanks so much for watching.
@HaukeLaging3 ай бұрын
Why use "ls ... | grep bird" instead of "ls -d *bird*"? It is not useful to start a new(!) bash instance in order to "activate" changes to the start-up files. The correct way is to source the files (again): "source ~/.bashrc" or shorter ". ~/.bashrc" If you want to type several commands into the same command line without considering the success or failure of the previous command then you do not use a single "&" as separator as this puts the command before it in the background. The simple concatenation of commands is done with the separator ";".
@BreadOnPenguins2 ай бұрын
Thanks for commenting with corrections, I appreciate it. As for grep, I figured it more worthwhile to demonstrate an additional tool.
@HaukeLaging2 ай бұрын
@@BreadOnPenguins That may be the best educational approach but I guess it would be helpful to mention that. Or even to show both as it just takes a few seconds.