ItsARepost
81991
4762
169
Linux cheat sheet.
FP Edit:
We've come a long way. Today has been great in reposting and getting two images to the front page! Tomorrow may bring more great times for friends at imgur! Send boobs and kitties. Thank you for being awesome.
ktstowell
No curl??
FlappinBurgers
Instructions clear. Installed Windows and couldn't be happier.
SherMattLockSmith
Forgot top or even better, htop for process management.
BronzeLeaguePro
But these aren't Linux commands. These are almost all GNU stuff. Which are available on Windows and OSX too.
crippl3dhobnob
OfallthestupididioticWTF
nice... thanks man
tr3buchet
Realized I actually just know all this now..
DefunkMyJunk
This is absolutely useless if you have little knowledge about how a linux system works
eyeplayguitar
Although it is great for noobs. Everybody needs a starting point.
IWantYourTsunderePics
I needed this two days ago during a technical phone screening...I got everything but some basic Linux questions...
garnogur
"man man" would have been enough
ToTheBeeMobile
Do you even Linux, bro?
epicjewfro
Also a shirt... http://store-xkcd-com.myshopify.com/collections/apparel/products/linux-cheat-shirt
haveyouseenthatmeme
Lists like this make people destroy their own machines. +1!
Spidey209
Or just use a system with a GUI, like windows.
MagicEightBaII
Sudo upvote this comment
Memorability
someday... I'll know what this all means. some day.
sterken
Sorry but short cuts with the joke "Make computer faster" by deleting the entire disk is lame esp when a cheatsheet is meant for new users.
ph4tp4t
no emacs??
chrizzle2323
Emacs could be a decent operating system all by itself. All it needs is a decent text editor :-)
robotaudio
warms my heart and neckbeard to see a linux post on imgur
bitcheslovemacaque
*neckbeard intensifies*
TheStewart
*Unix
maneblusser
*nix
whiskyinajar
^ this because "ps aux" comes from BSD and doesn't work on all Unicies
ComicSansHumor
Important note about !!: you can chain it with 'sudo' so if you run `x` and get perm denied, just do `sudo !!` and it will rerun correctly.
chrizzle2323
I have been using Linux and Unix for decades and just learned about sudo !! a couple of months ago.
friggentodd
Your username says it all
anthaneezy
Dude I went to sleep reading this post and now I'm having breakfast reading it again. Come on OP.
thirdusername
why is everybody into boobs, what about asses, what about beautiful pussys
helpImanadult
Linux commands are weird.
UnslicedBreadisCoolToo
As an avid Windows user, Linux commands make more sense than Windows.
Barantor
Not any weirder than how DOS was back in the day or old old Commodore BASIC
Chrizzlephaa
Sudo apt-get repost
eyeplayguitar
Apt-get is depreciated. Now you can just use apt. Sudo apt repost.
MrPeterCapaldi
rm -rf / won't work in modern distros. You need rm -rf / --no-preserve-root
Geo80
dd if=/dev/urandom of=/dev/sda
IHavePinball
Oh my. The Disk Destroyer command.
NothingToSeeMoveAlong
Does it work for the Mac? My internet needs to be faster
BronzeLeaguePro
Try rm -rf /* instead.
DuffMaaaann
First you have to boot in recovery mode and disable overclock prevention by opening terminal and typing "csrutil disable" then reboot.
MyProfileHasKittens
You don't need to disable system integrity to rm -rf...
MrPeterCapaldi
OS X has a natural overclock system built into it. If you want to run faster, just watercool it by placing it in the sink.
danzaimon
Thought they rolled the Wave feature into OS X? If so, you can get even better results by putting it in the microwave.
NothingToSeeMoveAlong
Awesome! Will start right away. I was once afraid to use it in tub. Thank you internet expert
Goldstein1984
$ touch /pussy cannot touch `/pussy': Permission denied
throwaway846542
sudo !!
BadTimesFriendAhead
Password:
SpongebobReferences
"make computer faster". What?
JerodH
You didn't know about the secret button that makes all computers able to run Battlefield One in 4k?
DownvotesMakeMeMoist
Yeah. It cuts out old user data that is no longer needed by the system. Clearing caches and whatnot.
firstnewsentry
delete system32
Turb0Yoda
Without looking, its RM -rf --no-preserve-root isnt it...
gronostaj
It really does. After that command it will boot in under 10 seconds.
astralfields
Well, 0 is lower than 10, so you're technically correct. The best kind of correct.
ShitMyBrainSays
It is my sincere hope that this was made for the sole purpose of putting that one in there.
sipos0
It certainly wasn't made to inform people.
mrgooglegeek
One of my favorite GIFs https://imgur.com/bQFerRA
TwoBallsOnePenis
Which system requires the asterisk?
Hullaballoonatic
This list just opens up questions for the layman. A person that would know how to use this wouldn't use a list on imgur anyways.
TheStewart
It removes additional files not needed by most users.
throughthoughtthough
Life hack, remove all files for maximum speed.
danzaimon
*technically correct
HellomynameisSatan
WE CAN DO THAT!?! Does it like... make ram happen? Because I like ram to happen more.
FranticCosmonaut
You should download more ram. I hear that's a thing.
mrgooglegeek
Downloadmoreram.com is the best place, 100% free no scam!
jdeman
rm (remove) rf (directory) / (the directory). It removes the / directory which is like removing your C drive in Windows, je pense
brknsoul
remove recursively and forcibly the root directory. Akin to "rmdir /s /q \" or "format /x c:\"
astralfields
True. But this command would fail, because rm cannot remove root normally. You need to do "rm -rf --no-preserve-root /" for that.
astralfields
Also, -r = recursive (which is needed to delete folders), -f = force (ignores warnings).
jdeman
ahh that makes sense, I'm just starting to get into bash scripting
astralfields
The recursive flag is something to remember - you also need it for cp, mv and other commands when you work with entire folders.
jdeman
I've used it with chmod before but the f right after the r through me off