Linux Maintenance

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

КОМЕНТАРІ • 320

  • @hjaltiatlason9263
    @hjaltiatlason9263 5 років тому +115

    Ubuntu users FYI:
    You can freeze any package including kernel packages by:
    example-1:
    sudo apt-mark hold
    example-2:
    sudo apt-mark hold linux-image-generic linux-headers-generic

    • @PenguinRevolution
      @PenguinRevolution 5 років тому +3

      Same with Vanilla Debian ;). Ohhh and don't use PPAs in Vanilla Debian, they will break you install,= only use PPAs with Ubuntu and it's forks.

    • @matuzaato
      @matuzaato 5 років тому

      @@PenguinRevolution can you use PPAs in Mint?

    • @PenguinRevolution
      @PenguinRevolution 5 років тому +2

      @@matuzaato Linux Mint is a direct fork of Ubuntu. So yes you can use ppas in Mint.

    • @stephenhunter70
      @stephenhunter70 5 років тому +1

      @@PenguinRevolution Are you referring to Arch Linux 32?

    • @PenguinRevolution
      @PenguinRevolution 5 років тому +4

      @@stephenhunter70 Never mentioned Arch Linux 32. I was talking about debian and Ubuntu

  • @danielmclaughlin5573
    @danielmclaughlin5573 5 років тому +159

    Quick tip: When you type a command that should have been done with 'sudo' but you forgot it, you can type:
    sudo !!
    This will rerun the last command given under sudo without having to retype the entire command.

    • @mobiousenigma
      @mobiousenigma 4 роки тому

      when i run linux i run as root lol sudo whats that but i also tend to run it as a live session i have learnt sudo su
      though

    • @JKhalaf
      @JKhalaf 4 роки тому +2

      That's pretty sweet! thank you! I didn't know about this.

    • @markusTegelane
      @markusTegelane 4 роки тому +4

      "sudo -s" automatically puts sudo in front of the commands you run. You can just type exit to stop doing that.

    • @ghost101049
      @ghost101049 4 роки тому +1

      I'm newish to linux. "Learn to sudo" is basically just putting sudo in front of the commands you're trying to run correct?

    • @Rahul-fi6kv
      @Rahul-fi6kv 4 роки тому +1

      @@ghost101049 sudo basically means run as administrator what it does it give you the access to mess with some system files

  • @El.Chef.Guevara
    @El.Chef.Guevara 5 років тому +23

    I've been running Ubuntu on my main laptop, which I use intensively, for 5 years now. Haven't done anything to it and works perfectly

    • @netronin504
      @netronin504 2 роки тому

      switch to mint, thank me later , yes its "ubuntu" minus the input lag

  • @PearComputingDevices
    @PearComputingDevices 5 років тому +44

    with Bleachbit never run free hard drive space on an SSD! You'll unnecessarily write zeros to your drive, thus wearing it out faster. On the other hand it's extremely handy to do that now and then on mechanical drives.

    • @marconyewtv4477
      @marconyewtv4477 4 роки тому

      Yes never do that on an SSD I prefer Stacey as it is more pleasant to look at and it's more friendly and safer

    • @Tw3akst3r
      @Tw3akst3r 4 роки тому +4

      @@marconyewtv4477 Stacer, not Stacey. right? Genuinely asking as I might install Linux on a laptop soon.

  • @Sierra410
    @Sierra410 5 років тому +143

    Because of LTT i can't stop reading you channel as "Chris Tech Tips" or "Titus Tech Tips"

    • @ChrisTitusTech
      @ChrisTitusTech  5 років тому +32

      LTT = UA-cam brand masters! lol.

    • @corey8704
      @corey8704 5 років тому +18

      At least Chris doesn't drop everything he touches like Linus.

    • @MirekFe
      @MirekFe 5 років тому

      @@corey8704 Nice. 👍

    • @fittb
      @fittb 5 років тому +1

      Literally why im here

    • @fuseteam
      @fuseteam 5 років тому +9

      "Titus Tech Tips" +2
      then we can call him "Triple T"

  • @timothyt.82
    @timothyt.82 Рік тому +1

    If you use the APT package manager, I would recommend using nala to upgrade your packages. It's meant to be more user friendly, has a cleaner terminal output, and automatically does certain things for you (autoremoves/autopurges files that are dependencies no longer needed, automatically updates the source list before upgrading so you only need to run sudo nala upgrade, etc.). You also aren't replacing apt, so you can still go in and run maintenance scripts without needing to rewrite them first.
    Of course, the apt command family is going to be your de-facto option for more advanced operations, but with nala upgrading is simple and enjoyable.

  • @corrosionoc69
    @corrosionoc69 5 років тому +6

    I love conky. It's one of my favorite add on apps. I love configuring it lol. It can be an insanely useful tool for monitoring your system...and it looks cool.

  • @matthewwebster3341
    @matthewwebster3341 4 роки тому

    Greetings, I have been transitioning to Linux exclusively for a few months now. This video has been very helpful. This and your other videos have been very helpful. Ciao!

  • @michadybczak4862
    @michadybczak4862 5 років тому +19

    Ah, you forgot to add that on Arch-based system we also need to:
    - clean pacman cache (all downloaded packages are stored there and taking space)
    - uninstalled orphaned packages or packages that were removed from the repo (and we cannot do that blindly, because it often happens that packages are marked as orphaned mistakingly)
    - update our configs with pacnew files, this is a manual intervention that is needed to be done once in a while
    - update git packages if you have any - they rarely show as an update and this is usually a manual action, although there are commands that can mass update git packages

  • @ivailogeimara
    @ivailogeimara 5 років тому +17

    One correction: 'apt-get autoremove' removes packages that are no longer needed i.e. packages that were installed as dependencies for another packages that were removed and these packages were left of and are no longer needed. On Arch there is no such command. You'd have to combine 2 commands: 'pacman -Qdtq' which gives you the packages that are no longer needed and remove them with 'pacman -Rsn' or combine them into 1 command: 'pacman -Rsn $(pacman -Qdtq)'.
    Also if you use Arch it's probably a good idea to remove packages with 'pacman -Rsn' which removes packages that were installed as dependencies for the package you remove and are not needed by another package and also remove their config files in /etc, instead of 'pacman -R'.

    • @heyyitsultima
      @heyyitsultima 5 років тому +3

      I would say, be careful with what you remove with pacman -Rsn as it is entirely possible to accidentally get cross-dependencies and end up removing something that you actually NEED on your system.
      Source: I've done this by installing a Gnome tool, not thinking about it before issuing the command, and wiped out my entire DE including my network manager, so I had to fix it from a chroot.

  • @williamtackett3814
    @williamtackett3814 3 роки тому +2

    Subbed. Just starting my linux journey. Years late I might add. Lol. I want to move my family over from windows and Microsoft.

  • @chrisbannister1684
    @chrisbannister1684 5 років тому +24

    Note the difference between 'update' and 'upgrade'.

    • @stephenvsawyer
      @stephenvsawyer 3 роки тому

      Arch is great. Just type “yay” and you’re done.

  • @cimbakahn
    @cimbakahn 4 роки тому +1

    Chris Titus Tech: Chris. Just a tip. I was always told to never stop bleachbit when it is in the process of cleaning. That you must let it finish or you will have problems.

  • @yehonatan2020
    @yehonatan2020 5 років тому +5

    Stacer is a really nice system cleaner worth trying out. Then there is Sweeper, Deborphan and Debfoster

  • @World_Theory
    @World_Theory 5 років тому +15

    That's really neat. I didn't know that you can keep Linux running indefinitely without a reboot. It's kinda ingrained into me that a computer is going to need a reboot eventually, because of memory leaking or whatever. That's mighty impressive!

    • @ChrisTitusTech
      @ChrisTitusTech  5 років тому +10

      Yeah I hear you! I still reboot often because I change tons of things, but yeah... It is not unheard of that many closed systems like elevators, electronic posters, etc... have run linux on a battery backup for 10+ years.

    • @droid8613
      @droid8613 5 років тому

      I like when ubuntu requires reboots! Not my

    • @OldieBugger
      @OldieBugger 5 років тому +3

      Yea, I know it can be run indefinitely but I still shut down my computer every evening to control my electricity costs, just like I turn off all lights when I go to sleep.

    • @casperes0912
      @casperes0912 5 років тому

      I’ve had macOS with an uptime of nearly three months as well. Memory leaks can happen in software, but especially in the OS it should only be in corner cases. If it’s not in the OS, the OS should be able to clean it up when the offending app is quit.

    • @mdtaylor2274
      @mdtaylor2274 5 років тому

      @@ChrisTitusTech I've just started using Ubuntu and I'm new to Linux. Love your channel. I've noticed that every time I reboot, especially shutdown, I get the black screen and there's a lot of broken code running across the screen. Then it shuts down or reboots. Goes by really fast and bothers the crap out of me. Is this an issue with the bootloader? Any ideas?

  • @0cgw
    @0cgw 5 років тому +4

    I find it easier to manage the repositories from synaptic (for a debian system). Just pull down the menu and tick/untick the repositories you have, you can also add new repositories and delete old ones. If you want to remove a package it will show you what else you would need to remove at the same time. There's really no need to edit /etc/apt/sources.list directly.
    I also almost never reboot after an upgrade, if there are new graphics drivers, I tend to just kill Xorg and that does the job.

  • @hsoj9550
    @hsoj9550 5 років тому +1

    Great tips! Definitely love information like this for cleaning out old junk that builds up over time.

  • @mg42sd
    @mg42sd 5 років тому +17

    3:23
    I see Your transparency effects are grainy. I suggest changing composer from OpenGL 3 to OpenGL 2. It helped in my case.
    Best wishes ;)

  • @AnzanHoshinRoshi
    @AnzanHoshinRoshi 5 років тому +3

    Thank you, Chris. I love apt.

  • @yvrelna
    @yvrelna 5 років тому +2

    I don't recommend doing most of these except verifying your backups, installing updates, and removing no longer needed and orphaned packages (dependencies of older version of packages that are now no longer needed).
    Especially that thing you do with Bleachbit or similar tool is going to cause more problems than it solves. Unless you have a particular problem with a specific application, you generally shouldn't micromanage these cache files. It won't make your system any faster, and more likely than not it will just slow down programs and cause data corruptions.
    In low disk system, it may be worthwhile to clean the package managers' download caches, but if you aren't running low on disk space, you don't need to worry about it.
    One maintenance that I recommend that hasn't been mentioned, if you're using Ubuntu-based system on btrfs system, you may need to remove the automatically created btrfs snapshot that apt created before a major system upgrade. Once you've confirmed the upgrade is successful and you decided you likely won't be rolling back, you can just delete the snapshot using btrfs tools. apt won't remove them automatically, and these snapshots take up quite a lot of disk space (and because of copy on write, they'll take even more space the longer you keep them).

    • @1pcfred
      @1pcfred 5 років тому

      Yeah once in a while I'll just see how much storage space I have left. Linux can get loopy if you get up to 90% full. Up to then no worries though. Right now my root partition is at 32% so no problem there. If I get up around 80% I'll think about maybe ditching something then. Or I'll just get more storage space. Probably the latter knowing me.

  • @spaceforrest
    @spaceforrest 5 років тому

    You do the best tutorials Chris! Clear instructions, reasons why you're doing stuff, great explaintions and poiniant tips. But best of all is your smooth delivery and non-intimdatng predisposition. Love your work mate, it gets me pumped about the future of the world. Thank you kind sir. 👍💯

  • @andyl.3567
    @andyl.3567 5 років тому +1

    I like your videos, man! Based on your teachings, I finally decided to get rid of Windows ...

  • @kalijasin
    @kalijasin 4 роки тому

    BleachBit is an excellent program. I didn't know I could do a sudo bleachbit though. Thanks Chris.

  • @dreamers_descent
    @dreamers_descent 5 років тому +1

    Awesome video man, this is the kind of stuff I'd love to refer to people who are just getting started with Linux. I would also add `htop` to the list too as for me it stands in place of windows task manager. Love the channel. :)

    • @coon-si3ce
      @coon-si3ce 5 років тому

      I find that top is a bit easier to uses and easier for a new guy to figure out.

  • @NbKXStorm
    @NbKXStorm 5 років тому +5

    That is an amazing UI, and configuration that you have going on there, any insight to what all you have installed on there for that?

  • @winlen4731
    @winlen4731 5 років тому +1

    Great video, really useful information on keeping Linux running smoothly. Thanks Chris

  • @ajrhodes3262
    @ajrhodes3262 4 роки тому

    I’ve been watching your videos recently and they are awesome!! Keep up the good work!!

  • @philippecardin1109
    @philippecardin1109 5 років тому

    I'm currently doing a personal experiment with my Manjaro KDE system. After a couple of update breaking (that i restored with Timeshift), i decided to completly stop doing any updates whatsoever. That was back in May of this year. So far everything i have installed back then work fine. I did install one or two other programs that work fine, but some others i could not because the dependancies are not up to date. I have another system on another SSD, Pop Os, that is up to date and can utilize for whatever reason. But in conclusion, my Manjaro still works like a charm and i use it every day as my main system!

  • @ИванСнежков-з9й
    @ИванСнежков-з9й 5 років тому

    In addition to `apt autoremove` I do recommend running `apt-get auto-clean`. It looks like `apt` likes to hoard every downloaded package and that could easily get over gigabytes. I had switched to 'testing' that had regular updates. It has gotten around 8GB of cache... on my 32GB sdcard. To empty the whole cache you can do `apt-get clean`, this however would remove the archives of the currently installed packages too.

  • @ezequielortiz4188
    @ezequielortiz4188 5 років тому

    Thanks Chris for warning users about doing a backup before purging packages, purging packages is a very dangerous operation, you can mess up your system beyond recognition.

  • @OldieBugger
    @OldieBugger 5 років тому +7

    WHAT!?! Zero playtime on World of Warcraft? Have you noticed, the WoW Classic has just been released?

  • @Innocentdarkness72
    @Innocentdarkness72 5 років тому +1

    allmost weekend, nice video chris....

  • @HikariKnight
    @HikariKnight 5 років тому +1

    Just to expand on the no need "no need to defragment" part on linux.
    The reason linux and most unix/bsd filesystems do "not need" defragmenting is because they leave more space between files to allow them to grow on the block level unlike ntfs which uses the immediate space (pretty much) after a file is done being written so any newer data for the file has to be written elsewere and a reference pointer is added to the end of the old data ("continues at XYZ") rinse and repeat, however you can run into situations where defragmenting the filesystem will be needed, however it is done in the background and a manual run might only be needed when the disk is close to being almost full (which in most cases will be rare)
    so yes you dont need to defragment your system like you have to do on windows unless your disk is pretty full before you will need to do a manual run (we talking maybe 80-90% full)
    before that, all defragmenting is done as needed in the background without you noticing any impact from it but you have to go over 50% disk space used by average before defragmenting is even done in many cases, as no files will be fragmented (for the most part) before that limit is reached.

    • @jadosrd8950
      @jadosrd8950 5 років тому

      HikariKnight keep in mind that SSDs should never, ever be defragged. Not only does it waste lifespan, but if the controller is cheap you can brick the drive.

    • @KaiKrakow
      @KaiKrakow 5 років тому

      @@jadosrd8950 If this ["brick the drive"] would be true, any IO access pattern could brick your drive: You should just not (and don't want to) use such drives. There are applications where "defragging" an SSD can make sense but that needs special defraggers that care about reducing IOPS for your specialized application and not moving files around as most classical defraggers do (moving files around is pointless on SSD, and introduces additional write load). But "never ever" is also: Your SSD wouldn't just die the next day just because you defragged it yesterday. It lost maybe 0.5% of it's life span, on modern drives probably even less. The bigger the drive, the less prone it is to this problem: Bigger SSDs have a exponentially longer live span for non-suitable write patterns.

    • @jadosrd8950
      @jadosrd8950 5 років тому

      Kai Krakow again back to the controller chip. A good, or even half decent, chip can withstand defragging, but it also makes it a moot point as THAT IS it’s JOB to read/write a bunch of scattered data as if it were in one chunk. A bad controller, and Im mainly talking $10 Ali junk here, has been shown multiple times to not “keep up” with knowing where data is and subsequently “losing” important data (Windows files).

    • @KaiKrakow
      @KaiKrakow 5 років тому

      @@jadosrd8950 Yep, that's probably the type of controller you don't want to trust your data - no matter if you defragment or not.

  • @sytzebuz
    @sytzebuz 5 років тому +21

    "FAT is event worse...". MS has just open sourced the exFAX spec and is supporting exFAT being added to the Linux Kernel. Let's see if MS will pull this off. I think they will.

    • @stephenhunter70
      @stephenhunter70 5 років тому +2

      Why would we want it! And why add it again?

    • @Alex11223l2
      @Alex11223l2 5 років тому +3

      @@stephenhunter70 it's used on many external drives. Nobody is using it for the system drive even in Windows.

    • @stephenhunter70
      @stephenhunter70 5 років тому +2

      @@Alex11223l2 Exactly, I rest my case.

    • @ancapftw9113
      @ancapftw9113 5 років тому

      @@stephenhunter70 my external SSD uses it, so I can't use it on my Pi.

    • @arashkmahshidfar7780
      @arashkmahshidfar7780 5 років тому +1

      It's gonna add support so they are not going to switch the linux file system. You can just use it without formats.

  •  5 років тому +7

    6:18 and 12:43 when you forget "sudo" in front of a command, you can look 110% more cool if you run "sudo !!". It's a proven scientific fact.

    •  5 років тому +1

      @callam85 Ladies like men who use "sudo !!". You're just jealous.

    • @jadosrd8950
      @jadosrd8950 5 років тому +2

      callam85 depends on the shell. Standard bash logs “sudo !!” as the full command string

  • @AssWhole-u6d
    @AssWhole-u6d 5 років тому

    There is defrag for ext4 and xfs. Run e4defrag -c /location/ to check your non ssd drive for fragmentation.

  • @deanlawson6880
    @deanlawson6880 5 років тому

    Great video! Thanks for the tips and tricks Chris!! Nicely Done!!

  • @PenguinRevolution
    @PenguinRevolution 5 років тому +1

    Chris I believe Fedora uses DNF package manager instead of YUM, REL/CentOS still uses YUM for the moment but with REL 8 I believe they will ship it with DNF. Also to complete the update you need to run sudo apt upgrade.

    • @JohnMiller-mmuldoor
      @JohnMiller-mmuldoor 5 років тому +1

      Penguin Revolution Yeah I was about to mention the same thing

    • @PenguinRevolution
      @PenguinRevolution 5 років тому

      @@JohnMiller-mmuldoor A lot of people get that mixed up these days (I do it sometimes too) The only reason REL doesn't use DNF is because Red hat hasn't had a major feature update since DNF was released. and REL and CentOS also provide you with a path to replace YUM with DNF if you so choose, however most people don't and in my opinion if you do use REL or CentOS then it's not worth switching it out until the next major release comes out, YUM works just fine.

  • @max03tube
    @max03tube 5 років тому

    I use Discover and Synaptic Package Manager to uninstall broken PPA and residual config. Also with the autoclean, autoremove commands. However I'm reluctant to use Bleachbit, had problem with it in the past.

  • @dipi71
    @dipi71 5 років тому +6

    This video is missing out on handling RPM-based systems like openSUSE.

  • @michadybczak4862
    @michadybczak4862 5 років тому +2

    Bleachbit is too aggressive and too complex for an average user. I thought I know what I was doing but after some time I discovered some small breakages, lack of data that most probably was "cleaned" by bleachbit and I was very, very careful and set only most general and basic cleanup and yet it was still too invasive.

    • @mdtaylor2274
      @mdtaylor2274 5 років тому

      @BlackWorm trying to find that but don't see it. Can you please share the link mate?

  • @timurtheterrible4062
    @timurtheterrible4062 3 роки тому

    9:59 What is that otter thing? I have seen it a few times online but I can't find it for the life of me.

  • @Mitsunee_
    @Mitsunee_ 5 років тому

    Ironically one of the things I learned from this video is the package name for kcharselect. I really badly needed a program like this and Kubuntu didn't ship with it. Also tried bleachbit and got 20GB of space back, which is great :3

  • @toavnwub
    @toavnwub 5 років тому

    exactly what I needed, thank you very much man! :D

  • @blop1738
    @blop1738 4 роки тому

    "sudo pacman -Syu" 6:22 mine doesn't work. Why? I use sudo apt-get update

    • @KubuntuYou
      @KubuntuYou 4 роки тому +1

      Pacman is for Arch systems. Apt and apt-get are for Debian based systems. Are you on Ubuntu?

    • @blop1738
      @blop1738 4 роки тому +1

      @@KubuntuYou i was using linux mint

  • @DavidIstre
    @DavidIstre 5 років тому

    I love your videos, but as a brand new user, it would help me if you slowed down just a little bit and included a few explanations of some of your terms. Otherwise, you have been a lifesaver for me!

  • @abhiramshibu
    @abhiramshibu 5 років тому

    apt autoremove in some case may remove critical stuff. Its basically all packages with no deps.

  • @SoulRollerFIN
    @SoulRollerFIN 5 років тому

    Had to clean the cache every couple months or the root partition would fill up and I couldn't update my Arch. Started to annoy me, so decided to mess around in package manager and keep less copies/versions. Now it''s fine.

  • @wilhelmsarasalo3546
    @wilhelmsarasalo3546 5 років тому

    Many of my users are running my software on Win 2000 still. No maintenance required, but using very few Windows facilities. POS/Inventory and such. Linux is better, but less familiar and has fewer available third party programs. In Windows, I wrote my own scheduler as I did not trust the one that came with it. This can be done. There is push back on Linux desktops. Linux servers are well received, is my experience.

  • @JeffM---
    @JeffM--- 5 років тому +1

    On the linuxmint forums, they warn that bleachbit is bad, that it can break your system, and that you shouldn't use it. I have used it for a while and I have had no problems.

  • @dallase1
    @dallase1 5 років тому +1

    Many People duel boot so they will be using NTFS.
    Timeshift is not compatible with Linux Ubuntu MATE, at least not on my PC because it screwed up my system and broke it when I did a restore.

  • @HansPiita
    @HansPiita 4 роки тому +1

    I had to fsck? After sometime of use, I told followed info i found on the net, can you explain what that is and how i can not have to do it in future

  • @frackkremlin6715
    @frackkremlin6715 4 роки тому

    should do a: when i upgrade to a new major change distro version. Something i noticed when upgrading from pop os 19 to 20 it broke alot of app installs. i use alot of different tools to install: pop shop, apt, flatpak, snap, chocolatey. it can really mess things up appwise.

  • @peterjansen4826
    @peterjansen4826 5 років тому +1

    Chris, what did you use as FPS-counter while running Minecraft?

    • @ChrisTitusTech
      @ChrisTitusTech  5 років тому +1

      Peter, I just used the built-in game FPS counter.

    • @peterjansen4826
      @peterjansen4826 5 років тому

      @@ChrisTitusTech
      I never played Minecraft.

  • @frag_stone
    @frag_stone 5 років тому +1

    Fragmentation/defragmentation is possible on ext filesystem ;)

    • @alexstone691
      @alexstone691 5 років тому +1

      But usually not required

    • @adamn.4111
      @adamn.4111 5 років тому

      From what I understand, most Linux filesystems defrag silently in the background while the filesystem is being used. Fragmentation can still build up over time, but it takes years of constant use for it to reach any significant level. I use XFS on all my drives, and once in a while I'll run 'xfs_fsr', but not very often.

  • @JKhalaf
    @JKhalaf 4 роки тому

    Chris, how did you reboot your machine whilst recording the video?

  • @anant6778
    @anant6778 4 роки тому

    bleachbit is an underrated lifesaver

  • @CPT101
    @CPT101 5 років тому

    Alright. Needed this. Nice Video Chris

  • @gwgux
    @gwgux 5 років тому

    You should also keep an eye on cron. Make sure nothing got put into your (or root's) crontab and remove old cron jobs that you don't need anymore.

  • @camb546
    @camb546 5 років тому +2

    Makes me wonder why Microsoft just doesn't create their own distro like RedHat. I mean the biggest thing is software, but if they created it alongside windows, then use something like a .NET virtualized container, while supporting developers that create main ports to their vision of a linux OS. I mean powershell and windows server is a huge hurdle to overcome, if they were to do that, because powershell is object oriented and linux is textual. Windows Server has implementations all over enterprise environments. So actually fundamentally changing Windows may be too volatile for them.

  • @jalpa9642
    @jalpa9642 2 роки тому

    Chris... I'm running MX-Linux on a DELL Latitude 6520. In this Video I was following you in the terminal to update Repositories, I did the "sudo pacman - Syu" command, Terminal said pacman command not found..! I then went to Synaptic Package Manager and looked for it, it's not installed but all files referred to "PACMAN" the Game.. where your pacman eats all the dots...! Later in the video you mentioned pacman, Package Manager..? I tried that and it doesn't work either, so what can I use...? Thanks in advance..! =)

  • @laskaofalaska
    @laskaofalaska 4 роки тому

    Hey Chris. Just noticed that this video is from 2019. Can you make an updated version of this? Like maybe there's something new or noteworthy that you can show us in 2020. Thanks!

  • @JamesReporting
    @JamesReporting 2 роки тому

    How do you safely clear out the log directory that always fills quick from /var/log?? ;)

  • @klightspeed
    @klightspeed 5 років тому

    13:45 Your kdenlive repo list is zero size (empty), so it looks like it removed your repo link to kdenlive.

  • @dim3nt0
    @dim3nt0 5 років тому

    i am on mint and like how that desktop/menus look, i wanna try it my self :) any pointers on package names, icons etc what do i need

  • @haytham-medhaytham6844
    @haytham-medhaytham6844 4 роки тому

    I have a problem that makes me reboot, which's random sudden lasting CPU spikes, once CPU goes crazy, only way to fix's a reboot.

  • @markusTegelane
    @markusTegelane 5 років тому

    Linux systems can get fragmented if you have very little disk space, but otherwise it almost never happens in ext4 (which is the defacto fs on most distros)

    • @casperes0912
      @casperes0912 5 років тому

      Well it still happens with a lot of disk space actually. It’s just that it doesn’t happen for long, because when the disk isn’t super active it’ll reallocate things (pretty quickly) to fix it itself

  • @fuseteam
    @fuseteam 5 років тому +2

    old habits die hard, no reboots neccesary :p
    just need to figure out what needs to be restarted xD

  • @Supervideo1491
    @Supervideo1491 5 років тому

    Hi Chris!
    What do you think about coreboot and its variants? Have you ever tried installing it?

  • @JohnnyBravo655
    @JohnnyBravo655 4 роки тому

    Whenever I am booting up my Linux, my left click on the mouse is not working and I have to run serval commands to disable and enable device again. Same things happening with my Wi-Fi - it's just spontaneously not working and when I am trying to open "network", my desktop environment crashing and I have to reboot the whole system. I am using Mint 19.3 and cinnamon DE.
    I am so close to give up Linux and return to the boring Windows OS.

  • @grampawwillie1665
    @grampawwillie1665 5 років тому

    I like to run straight Debian. maintenance is via the apt command and this seems simple enough

  • @stanyorgov7691
    @stanyorgov7691 4 роки тому +1

    Hey, nice video, man, but I saw you play minecraft over lutris. Minceraft has native Linux suppor, you should try it

  • @BarafuAlbino
    @BarafuAlbino 4 роки тому +3

    In my experience, "sudo bleachbit" and "sudo rm -rf /" are similar in effect.

  • @yagot2323
    @yagot2323 5 років тому

    what's the program at 2:40 to look for files and other programs?

    • @yagot2323
      @yagot2323 5 років тому

      @Mubashir Haroon oh, ok, thanks!

  • @uma9183
    @uma9183 4 роки тому

    I need your help; How to remove old kernels packages and fast up my fedora 29 ????

  • @daveprice9128
    @daveprice9128 5 років тому

    Could you give me an educated guess on how much space time shift needs?

  • @diortemrepus5729
    @diortemrepus5729 5 років тому

    For Fedora 31 you will want to run the following in the terminal prior to launching bleachbit once installed:
    sudo dnf install python2-gobject -y
    It works fine once you do this. This is from their News segment on their site (link: www.bleachbit.org/news/bleachbit-30). Enjoy!

  • @flowinnature8235
    @flowinnature8235 5 років тому

    Hi
    I’m on Mint, i formatted an old hard drive to ext4, mounted it but was unable to write on it and had to revert to ntfs to be able to put files on it.
    Why did this happened?
    Thanks in advance

  • @yuriykazmirchuk9641
    @yuriykazmirchuk9641 5 років тому

    Thank you very much for the video!

  • @arthurdiamondhands474
    @arthurdiamondhands474 2 роки тому

    what does it mean when installation candidate is not found?

  • @VincentThePhotog
    @VincentThePhotog 5 років тому

    Great video! I'm sure you may have said before, but I'd like to know what desktop environment you're using on this machine. It looks great.

  • @aristotelispapageorgiou4627
    @aristotelispapageorgiou4627 5 років тому

    Chris, when will you learn to use "sudo !!" ?

  • @yann_j
    @yann_j 5 років тому +1

    Hey Chris, nice video as always! Could you make a more thorough arch install video sometime in the future? :)

    • @yann_j
      @yann_j 5 років тому

      @@rdangdev UEFI

  • @OldieBugger
    @OldieBugger 5 років тому

    I am not very fond of command-line. I am not afraid of it, I just use GUIs whenever available. Call me lazy if you like. I used Mint Software Manager to install Bleachbit. So, let's continue with the video.

  • @jyper4892
    @jyper4892 5 років тому

    Hi Chris, which Linux distro you use

  • @ilsirent9726
    @ilsirent9726 5 років тому

    I don't know anything about btrfs, zfs and HAMMER, but it appears to me that there is some performance increase after defragmentation a ext4 volume. Ubuntu even comes with e4defrag utility preinstalled. Here is the article I am referring to:
    www.linuxsecrets.com/kdocs/ols/2007/ols2007v2-pages-179-186.pdf

  • @birdmun
    @birdmun 5 років тому

    One question, you know sudo !! will run the previous command as sudo?

  • @klikinfotech7731
    @klikinfotech7731 5 років тому

    i am very new to linux, could you plesae make videos on doing the same thing in GUI instead of CUI

  • @kronusexodues7283
    @kronusexodues7283 5 років тому

    too bad, the one thing I hoped for wasn't there. :/
    I uninstalled some programs and afterwards still found their configs in home. I hoped you'd show a quick way to remove configs and other files for programs that are nolonger installed.

  • @petekolakowski
    @petekolakowski 5 років тому +2

    I am looking for a laptop that will work under Linux. What can you reccomend ?

    • @yvrelna
      @yvrelna 5 років тому +2

      I would recommend System76. They make great Linux laptops and desktops.
      All their hardware have excellent Linux compatibility and all their machines are preinstalled with either Pop!_OS or Ubuntu. Preinstall is great if you are just starting out using Linux and want a quick start without having to learn how to install Linux in your existing machine.

    • @pw1187
      @pw1187 5 років тому

      Honestly dam near any laptop runs linux fine....as long as it's not like 10 years old....I use a Alienware laptop deleted windows and put Linux on it as my gaming laptop

    • @LeoLijo
      @LeoLijo 5 років тому

      i have laptop 12 eyars old nad it runs debian minimal installation with openbox and xorg with no problem

    • @wikingagresor
      @wikingagresor 5 років тому

      I just bought HP Probook 645 G1 from Allegro.pl - it is running Debian with no problems.

    • @petekolakowski
      @petekolakowski 5 років тому

      I have AsusPro and I can't use linux. Something must be wrong with my laptop. After installing Linux my eyes hurt so much. I dont know what is going on but it is so uncomfortable.

  • @lsatenstein
    @lsatenstein 5 років тому

    Some Linux hardware h has to be defragged. SSDs and M.2 drives need periodic trimming. This is usually scheduled by Linux on a regular basis such as "every 200 hrs of use, or after xxx gigs have been written. Same requirement for Windows systems.
    Eventually, the SSD bios will have an extension to where the SSD itself, without Linux, will do its own trim.

  • @mariuscretu4060
    @mariuscretu4060 5 років тому

    Hi, i've got a problem with the boot menu - at first i've installed linux mint mate, was all fine, and then i've tried linux mint cinnamon, but was something wrong with handbrake - and I thought that will be better to try many versions of linux, manjaro, pop os, and ubuntu, but now in the boot menu i can see 3 options of different linux versions, the last one is ubuntu, i'm able to install back all this three versions of linux back as a fresh install, but I can't install linux mint back, maybe is something wrong with the grub, when im trying to boot linux mint from usb stick, I get this - error: invalid magic number and also this error:you need to load the kernel first. I want to go back and install a fresh copy of linux mint and try xfce, but I don't want to see in the boot menu the names of the linux versions which I don't want to use - so how can I delete the previous installations from the boot menu and then to be able to go back and install mint, at the moment i'm running ubuntu 19 and i'm planning to install ubuntu mate as a trial. Thank you, bye

  • @MiningForPies
    @MiningForPies 5 років тому

    Defragging the drive? What is this 1998?

  • @lmulligan6969
    @lmulligan6969 5 років тому +1

    Hi everyone. I am a linux super baby. Just getting into it. What does "sudo" mean and do in the terminal?
    Thanks for not insulting or killing me... :)

    • @yvrelna
      @yvrelna 5 років тому +1

      `sudo` will run a program as another user. By default, if you don't specify any other options, it runs the program as root (like Adminstrator privilege in Windows), which gives the program full system permission.

    • @1pcfred
      @1pcfred 5 років тому +1

      SUDO = Switch User DO. It grants your user account administrator privileges. man sudo for more information.

    • @shadowblack5455
      @shadowblack5455 5 років тому +1

      Paul Frederick im pretty sure it stands for Super User DO not Switch User DO.

    • @mrkitty777
      @mrkitty777 5 років тому

      Good to learn things you didn't know since you probably used Windows and therefore are familiar with it and new things to learn are different.

    • @KeithBoehler
      @KeithBoehler 5 років тому +1

      The other commenters explained, but wanted to add that you should use it when you need those administrator privileges. If what you are doing does not strictly require them try and dig deeper as to what might be failing. Just a caution.

  • @mobiousenigma
    @mobiousenigma 4 роки тому

    im relativity new to the linux world , but i believe my pc experience carries through .. for clarification i remember when Microsoft released there first operating system and have used cpu's measured in hertz not kilohertz or even gigahertz! and ram was measured in k's so i believe that dates my usage experience. from my experience all os;s degrade with user input.. all os;s have recommended maintenance.. all will sorta fix the issues and take time... installation of every os ive ever done takes around an hour solving cleaning and troubleshooting always takes longer,, having an archive of all drivers and software installed says if data is saved to non stand locations a full install of the os and software is less effort and time than "maintenance" ever was and has far better results for me anyways mileage may vary

  • @shanebagel
    @shanebagel 4 роки тому

    BLESS YOU CHRIS

  • @derekr54
    @derekr54 5 років тому

    Very interesting and informative.

  • @SirBaron52
    @SirBaron52 5 років тому

    What command do you use in Deepin

  • @OverAndOverAndOver
    @OverAndOverAndOver 5 років тому

    Are you running Cinnamon desktop? (P.S., you should leave your package list from your main machine in the description)
    Edit: It looks more like KDE, but still could be Cinnamon

  • @realJohnJohn
    @realJohnJohn 5 років тому

    are you only doing youtube? or are you still consulting ?