Jump to content

TooManyErrors

Member
  • Posts

    254
  • Joined

  • Last visited

Reputation Activity

  1. Like
    TooManyErrors got a reaction from da na in Experiences with non-techies   
    I hate it when people do that.
     
    I have to keep telling my family to use Chrome or Firefox so that I don't have to clean out the potential viruses. I've been lucky that there haven't been any cases yet.
  2. Like
    TooManyErrors reacted to steezemageeze in A guide for getting started with Linux   
    Okay, so I have notifications turned on for this subforum, and very frequently, I get the same "what distro for this computer" and "how to learn linux" posts, and I thought I'd write this to try to put some people's minds at ease. Because there is no way I can possibly cover everything, outside links will be plentiful. Please feel free to suggest edits or correct me on any points I make.
     
    First off, anyone looking to ditch Windows who has never used Linux before needs to realize that they are immensely different. You don't download you software from websites (for the most part, I'll get to this later). A good portion of the software that you used on Windows will not be available on Linux, however there are plentiful open source alternatives for these. Most of your software will be downloaded directly from your distribution's repositories, either through a software "app store" so to speak or through a command line package manager. Speaking of the command line, you can't be afraid of it. The command line is one of your greatest tools in a Linux system. This is a pretty good guide for getting started.
     
    So which distro is right for me?
     
    This can be a tough question. Nobody can tell you exactly what distribution is right for you, in the end you will have to distro-hop until you find a home somewhere. I will however, try to give you a general recommendation
     
    EDIT:  @Azgoth 2 covered it very well in a comment below
     
    For the complete noob:
    Most people will point you towards Linux Mint in this case, and I tend to agree. In fact, I ran it on my main PC for a long time. For the most part, it is a very stable distro, it's very easy to set up, and the community is very friendly. It is based on Ubuntu 16.04 as of the version 18 release. Ubuntu, or any of it's flavors, is also a very good place to start. I've also heard that Elementary is good for beginners (especially OSX converts) but I haven't used it. Honorable mentions go to Zorin OS and ChaletOS, I have heard that they are both very Windows-like and are generally pretty stable.
     
    For an older computer:
    The general consensus here is that Lubuntu and Xubuntu are the best choices for a beginner with a slower computer. Both are low on resource consumption and run great on older hardware. I personally have Xubuntu running on all three of my systems, one of which is as old as me (16 years!). BunsenLabs and ArchBang are good choices if you are slightly more experienced or want a challenge.
     
    For anyone else:
    Really, just take your pick. Fedora (or offspins like Korora or Chapeau), Manjaro, and Debian are all great choices. If you're brave, give Arch a try. 
     
    Desktop Environments explained (link to post below)
    https://linustechtips.com/main/topic/593724-a-guide-for-getting-started-with-linux/?do=findComment&comment=7754472
     
     
    Installing Software
    This varies between distros. Each has their own command line package manager, and graphical front-ends for them. This is a pretty complete list of programs available in Linux, as is this.
     
    Debian-based: APT package manager
    Debian based distributions such as Ubuntu, Mint, Elementary, BunsenLabs, etc, use the APT package manager. Installing a package is achieved by typing in the terminal 
    sudo apt-get install chromium Chromium, the open-source version of Chrome, is being used in the example. "Sudo" grants you temporary root access in order to install the package (after providing your password). 
     
    You also have the option to install pre-packaged ".deb" files, which you download from a website and then install with something like gDebi or Qapt (usually included in the distro. Left click the .deb and choose "install with ___"). This is how you would install Google Chrome (the non-open-source version).
     
    To remove a program, type 
    sudo apt-get remove chromium or
    sudo apt-get purge chromium Purge removes all files associated with the package (ie config files), remove only removes the package
     
    sudo apt-get update sudo apt-get upgrade These are used to update the repository lists and then upgrade the installed packages
     
    EDIT: As of Ubuntu 16.04, you can simply type "sudo apt install ____".
     
    Synaptic Package Manager is a good graphical front-end if you wish to avoid the CLI
     
    Fedora-based: DNF package manager
    I will admit, I have less experience with this than I should, and I'm sorry if there is misinformation. I used Fedora for a few weeks but not as extensively as I would've liked. If someone wants to swoop in here and correct me I'd be very thankful.
     
    To install a package:
    sudo dnf install chromium To remove a package:
    sudo dnf remove chromium To update a package:
    sudo dnf check-update sudo dnf upgrade  
    DNF mostly uses simple commands, and is pretty easy to pick up. This is a good resource, I actually had to use it to check myself.
     
    Arch-based: Pacman package manager
    Pacman is one of my favorite package managers, for a couple reasons I won't get into. It's also pretty easy to pick up.
     
    To install a package:
    sudo pacman -S chromium (the capital S is important.)
    To remove a package:
    sudo pacman -R chromium or
    sudo pacman -Rs chromium same deal as APT, -R removes the program, -Rs removes dependencies & configs
    To update packages:
    sudo pacman -Syu  
    Arch also has the Yaourt and Pacaur (Pacaur is preferred by most users) package managers for the Arch User Repository, but I won't get into that. The commands however, are all the same as pacman (ie -S, -R, -Syu). Octopi and Pamac are popular graphical front-ends for pacman
     
    Coming soon eventually: openSUSE: Zypper package manager
    I finally got around to giving OpenSUSE a shot, and I'm really loving it! The commands are super simple.
     
    To install a package:
    sudo zypper in chromium To remove a package:
    sudo zypper rm chromium To update packages:
    sudo zypper up  
     
    Eww, Linux is ugly!
    You're damn right it is. However, with a little work, your OSX buddies will be jealous of your desktop for once. I'll just recommend you a few popular themes to get you started.
     
    GTK Themes:
    Arc (my fav)
    Numix
    Paper
     
    Icon Themes:
    Numix
    Moka
    Paper
     
    Obviously there are TONS of themes out there, these are just the most popular and (imo) best looking. You'll most likely find the option to change your themes in your distro's settings menu, otherwise you could edit the configuration files manually.
     
    How do I install Linux on my PC?
    First, make sure that secure boot is turned off in your BIOS/UEFI. Next, go to the website of the distro you're going to use, and either direct download or torrent (torrenting isn't bad!) the .ISO file for the OS. Once that's done, either burn it to a CD using the build-in burner in WIndows (not recommended), or use a tool like Rufus, Universal USB Installer, or Unetbootin to burn the ISO to a USB drive. Now reboot the PC, press whatever key your PC requires to change the boot device, and select your USB drive (If you have a UEFI mobo, it can be a crapshoot whether or not you should boot it as UEFI or BIOS. Try both.). Select the "Live" option if there is one, since it gives you a chance to play around with it before installing. Once you're convinced you want to install the OS, fire up the installer (should be an icon on the home screen) and follow it's instructions. Reboot when it's done, and you're good to go!
     
    How do I dual boot Linux and Windows on my PC?
    https://linustechtips.com/main/topic/593724-a-guide-for-getting-started-with-linux/?do=findComment&comment=7862971
     
     
    I'm having trouble with graphics drivers
    Usually, there will be an "additional drivers" menu somewhere within your distro's settings menu's, usually you can select the Nvidia or AMD driver from there. If not, you're gonna have a rough time. This may help you on the Nvidia side, while AMD drivers can really be a crapshoot from what I've heard (don't own an AMD card, can't testify). If anyone has a good guide for getting them working, I'll link it.
     
     I NEED this piece of Windows software
    You're in luck. There just so happens to be a program called Wine (and by extension, PlayOnLinux) that runs a "compatability layer" that allows some Windows programs to, albeit not always perfectly, run in a Linux environment. Nice, right?
     
    I broke my system!
    It happens, don't worry. Most likely, it's a simple fix, and you'll be able to recover your data. Your best bet is a Google search first, and if you come up empty come post in the forum here or in the Linux Helpdesk on the Tek Syndicate forums. Their Linux community is very active, sometimes you'll get a better/quicker answer over there. 
     
    My laptop gets worse battery life in Linux than in Windows:
    This is most likely the fault of unoptimized hardware, and affects just about everyone. The solution to this is to install a package called TLP. To install it, you'll want to run (assuming Debian base)
    sudo apt-get install tlp and then 
    tlp start You should get the output "TLP started in (bat/AC) mode".  Depending on the laptop, this could increase your battery life by a few minutes or a few hours in my experience.
     
    How do I check my RAM & CPU usage? Where's Task Manager?
    One of the most popular task manager applications is a command line script called HTOP. It looks like this:

    You run it in the terminal by simply typing
    htop in the terminal (it may or may not be installed already). Your distro/DE of choice may also have their own graphical Task Manager installed, you can usually find it by searching for "task manager" in the search bar or in the Administration folder of the main menu. In my case, Manjaro Cinnamon, HTOP is the pre-installed task manager, and I can actually click on an icon to launch a terminal with it running.
     
    (this file) that I downloaded won't run! What should I do?
     This could be one of two very likely things. First, you probably want to make it executable. You can do this by typing 
    chmod +x (your file) in the console. Now try running it again. The other thing that may be wrong is that you're missing dependencies. In Debian/Ubuntu, you can run 
    sudo apt-get -f install just as an example. Some distros will handle this in different ways. If that doesn't work, try googling problems with that specific package on your distro. In many cases these are well documented and you can find a very simple answer.
     
    Useful Resources:
    Arch Wiki: even if you don't run Arch, you will find that the Arch Wiki is a great resource  Man pages: Accessed through the command line by typing "man sudo", or whatever you want to know about. Linux is one place where it's uncool not to read the manual. Your distro's website: a lot of distro's have  a wiki or a forum on their website, both of which are great resources if you can't find information elsewhere Here: A lot of the time, your question could've been asked and answered here before. Try the search bar in the top right of the website.  
    For now, I think that covers the basics. Again, edits are welcome, and I will be adding more information to this thread if it comes to my mind. Cheers, good luck on your journey into open-source!
     
     
    Note to those scared about trying Linux for the first time: I have only been using Linux since February 2016. I had never used it before, minus one time I installed Ubuntu with Wubi (look that up, it's actually pretty neat) on my laptop and then immediately deleted it when I was 8. I am pretty advanced with computers, as teenagers go at least, so I had an idea of what I was doing, and I wasn't afraid to learn. The whole key using Linux, in my experience, is to not be afraid to learn, not be afraid to experiment, and to google the hell out of everything!!! Good luck!
  3. Like
    TooManyErrors got a reaction from Sunshine1868 in Ubuntu 15.10 launches and 16.04 LTS codename release   
    Linux has drivers that are completely fine, in fact it is extremely rare to have to look for a working driver.
  4. Like
    TooManyErrors reacted to Misanthrope in Sanpdragon 820 has faster graphics than Apple A9 chip according to sources   
    With this intense graphics and chips race in the mobile arena, I can't wait to try this impressive and extensive list of worthy games on phones and tablets
     
  5. Like
    TooManyErrors reacted to PCBjon in The official Apple Watch magnetic charging dock is now on sale   
    The price for innovation ah
  6. Like
    TooManyErrors reacted to TechGod in Payday 2's Microtransaction situation worse(Forum Mods Quit)   
    Are you high or something or can you not read? These were MODERATORS THAT ARE VOLUNTEERS THAT WERE THREATENED!!! They have nothing to do with the decisions the developers take. You're a horrible human for saying people deserve death threats over a stupid game anyway. Grow up.
  7. Like
    TooManyErrors reacted to LAwLz in Windows 10 upgrades to happen automatically   
    It makes me really sad to see someone so willing to not only throw their own rights away, but also tell others they should too.
  8. Like
    TooManyErrors reacted to Jade in Windows 10 upgrades to happen automatically   
    Doesn't matter if they care. Matters that I don't want them to know, regardless of whether or not they care. And calm yourself; I run 10.
      It's really not all that broken, in contrast to 8/8.1.
  9. Like
    TooManyErrors reacted to Trik'Stari in Tax Rebellion in the UK.   
    So, this might not seem technology related at first, but it is. Mainly because it stands to primarily effect some of the largest corporations with operations in the UK. Namely companies like Google, Amazon, and Facebook.
     
    So basically, a group of small businesses in the Welsh city of Crickhowell have decided to ban together, and use all of the tactics used by giant corporations, to avoid paying taxes. Not because they don't want to pay taxes, but because they want to draw attention to the fact that some of them pay more in taxes than some billion dollar a year corporations. Specifically, they want these giant corporations to pay taxes like everyone else has to.
     
     
    To me, it seems completely fair for these people to do what gigantic corporations do. So long as it draws attention to the fact that things like this can happen.
     
    As an American, I also enjoy the irony of the idea of a "tax rebellion in the UK". But seriously, I applaud these business owners. They're putting their governments back against the wall. If the government tries to stop them, it's an obvious move to protect their corporate masters, and if they break down and actually tax these companies making ridiculous amounts of profit, then they lose all their delicious corporate funding.
     
    I love this story.
     
    Source: http://www.independent.co.uk/news/uk/crickhowell-welsh-town-moves-offshore-to-avoid-tax-on-local-business-a6728971.html
  10. Like
    TooManyErrors reacted to theninja35 in Ransomware reaches Linux   
    I don't think the Linux boys say that. Mostly Apple fans.
  11. Like
  12. Like
    TooManyErrors got a reaction from Timmy-P in Police "to be" granted power to view your Internet History [UK]   
    At what point do we start referring to the UK as "Airstrip One"?
  13. Like
    TooManyErrors reacted to Admiral Naismith in Microsoft planning to be a bit more aggressive about the Windows 10 free upgrade next year (for Win7/8 users)   
    Why DON'T people care about the tracking is a better question.
  14. Like
    TooManyErrors got a reaction from Astralify in CISA Passes Senate 74-21   
    Anyone up for a revolution? Or perhaps a Mars colony? Really just anything to get us away from this mess?
  15. Like
    TooManyErrors got a reaction from Sithhy in Ubuntu 15.10 launches and 16.04 LTS codename release   
    Linux has drivers that are completely fine, in fact it is extremely rare to have to look for a working driver.
  16. Like
    TooManyErrors got a reaction from PlayStation 2 in Ubuntu 15.10 launches and 16.04 LTS codename release   
    Linux has drivers that are completely fine, in fact it is extremely rare to have to look for a working driver.
  17. Like
    TooManyErrors got a reaction from FakezZ in Ubuntu 15.10 launches and 16.04 LTS codename release   
    Linux has drivers that are completely fine, in fact it is extremely rare to have to look for a working driver.
  18. Like
    TooManyErrors reacted to RH00D in Windows 10 build 10558 leak   
    This is the model comment. Every LTT user should strive to contribute such intellect and substance to the forums.
  19. Like
  20. Like
    TooManyErrors got a reaction from Trik'Stari in China wants US tech companies to sign a PRISM-like 'pledge of compliance'   
    I'd love to see tech giants do that to any country that demands privacy compromises. It would cause so much shit to hit the fan if Google disabled their services in the US for just one day.
  21. Like
    TooManyErrors got a reaction from Zayzo in Windows 10 Start Menu can't handle more than 512 items   
    Although I use Linux and this won't affect me, I wonder why anyone would have 512+ items in their start menu.
  22. Like
    TooManyErrors got a reaction from atrash in iPad Surface Pro   
    Who is this even remotely supposed to be aimed at? It is objectively worse than the Surface Pro 3 in almost every way, if not every way.
  23. Like
    TooManyErrors reacted to atrash in Upcoming Windows Phone Leaks?   
    Well we kinda already knew the specs for both 'Cityman' & 'Talkman' for a while now. I think its inevitable I might have to start embracing large screen phone for my next upgrade. Still love my L925 tho. Thank god they are making one in Cyan colour. My previous phone L620 was cyan too. 
     
     
    Care enough to post something in a WP related thread
  24. Like
    TooManyErrors reacted to NeatSquidYT in [Mini-News] Apple Giving Away Solo2 to Students Who Buy a Mac   
    Sweet, buy a shit computer and get a pair of shit headphones!
     
     
    Anyways, if I did this, I'd buy a MacBook for programming and sell the beats :3
  25. Like
    TooManyErrors reacted to dalekphalm in Critical exploits plague IE11 but MS is too busy with W10 to patch them   
    Does anyone even BOTHER to read the source? This is for Windows Phone IE 11 only.
×