New OOTS products from CafePress
New OOTS t-shirts, ornaments, mugs, bags, and more
Results 1 to 19 of 19
  1. - Top - End - #1
    Barbarian in the Playground
    Join Date
    Aug 2006
    Gender
    Male

    Default Linux Recommendations

    As a previous although old thread demonstrates, I'm not exactly great with the more intricate details of computer programming...but I clearly want to get better. As a start towards this, I've got an older computer that I'm willing to convert to a Linux machine, but I was wondering if the board had any good recommendations for Linux builds that are more tolerant of people getting started? I've read that Ubuntu was pretty good but I'd like to see what some other people have to say before I make a final decision. I don't intend particularly to do all that much gaming on this machine anyways.

  2. - Top - End - #2
    Troll in the Playground
     
    Flumph

    Join Date
    Nov 2006
    Location
    England. Ish.
    Gender
    Male

    Default Re: Linux Recommendations

    When I was experimenting I tried Ubuntu and CentOS, and for my work-based stuff we are generally using CentOS.

    With most of the modern Unix/Linux variants I don't think it really matters unless you have some very specific requirements. The desktop environments seem to be fine in either case (and you can generally pick and choose desktops, as I recall).

    Ubuntu is probably fine for your purposes, but it isn't difficult to slap both on to DVDs and experiment - if you don't want to muck around with multiple installations I seem to recall Centos at least having a "boot and run from DVD" option.
    Warning: This posting may contain wit, wisdom, pathos, irony, satire, sarcasm and puns. And traces of nut.

    "The main skill of a good ruler seems to be not preventing the conflagrations but rather keeping them contained enough they rate more as campfires." Rogar Demonblud

    "Hold on just a d*** second. UK has spam callers that try to get you to buy conservatories?!? Even y'alls spammers are higher class than ours!" Peelee

  3. - Top - End - #3
    Colossus in the Playground
     
    BlackDragon

    Join Date
    Feb 2007
    Location
    Manchester, UK
    Gender
    Male

    Default Re: Linux Recommendations

    Well, first off, why do you feel you need to install Linux to learn computer programming? There are just as many programming tools available for Windows, heck, even Microsoft provides pretty much the entire Visual Studio suite for free these days. Assuming you do also want to fiddle around with an alternative OS as well, I'm a fan of Linux Mint--it's based on Ubuntu so has access to that ecosystem of programs etc., but I vastly prefer the Cinnamon user interface you can get on it to Ubuntu's variant.

    Do bear in mind that installing and using Linux is rarely as seamless as Windows, though. Just as an example, I just installed Linux on a streaming PC I have attached to my TV purely as an experiment, but I couldn't even get it to boot into the "live CD" (actually a "live USB" since it was on a USB stick!) without modifying some of the boot parameters--it would just go straight to a black screen after POST and stay there forever. The laptop I'm typing this on also has Linux installed, and it has an annoying habit of randomly locking up every now and again and needing the old "hold the power button in until it switches off, then turn it back on" approach to get it back up and running. I know both machines ran absolutely fine when they had Windows installed, which is why my *main* PCs (the ones I actually use to get stuff done most of the time) don't run Linux!

  4. - Top - End - #4
    Ettin in the Playground
     
    Erloas's Avatar

    Join Date
    Oct 2006
    Gender
    Male

    Default Re: Linux Recommendations

    The only reason to run Linux for programming is if you want to program specifically for Linux. You can easily use many of the languages that are cross-platform from either Linux or Windows. Even something like C++, unless you're doing something very complex or using a lot of backend OS functions, moving the the code from Linux to Windows or vis-versa would just require an OS specific compiler.

    I would say that unless you know why you need Linux specifically, you're probably much better off coding in Windows, since that is clearly what you're most familiar with. There is also the question of why you want to code, if you want to build applications you're actually going to be using, are you going to be wanting to use them on your main Windows machine or the old Linux machine you're setting up just to code on?


    Learning Linux is a valid option, but you should do it because you want to learn Linux, not because you want to learn programming.
    I know I've used a Debian version at some point, and we have SUSE at work. I have tried at least 2 versions of Ubuntu as well, but I can only remember Mint at the moment, I'm pretty sure that's what I have on my old laptop right now.

    Any of the versions Ubuntu are probably a safe choice, in that it will be much easier to find help and it is pretty widely used. I would give yourself about a week to get everything smoothly and just learning the idiosyncrasies of Linux. Also just expect installing anything new to have issues that you'll have to search for how to fix it and work around.
    (There's a reason I've been hearing from die hard Linux users, for about 22* years now, how Linux is going to overtake windows and how it's so much better, yet still sits at like 2-3% of PC market share. It doesn't just work, you have to want to use it and be willing to spend a lot of time figuring out what is wrong.)

    *I'm sure it's been going on longer than that, that was just how long ago I first ran into die-hard Linux users.

  5. - Top - End - #5
    Colossus in the Playground
     
    BlackDragon

    Join Date
    Feb 2007
    Location
    Manchester, UK
    Gender
    Male

    Default Re: Linux Recommendations

    Quote Originally Posted by Erloas View Post
    There is also the question of why you want to code, if you want to build applications you're actually going to be using, are you going to be wanting to use them on your main Windows machine or the old Linux machine you're setting up just to code on?
    You can theoretically do cross-platform development using Mono (on the Linux side), which targets something that's supposed to be largely compatible with the .NET Runtime on Windows, although I don't know how well that works in practice.

  6. - Top - End - #6
    Ogre in the Playground
     
    NecromancerGuy

    Join Date
    May 2009

    Default Re: Linux Recommendations

    A few notes:

    • As mentioned, Ubuntu is a good basic choice for a distro to get started with. That said, Windows now has WSL (Windows Subsystem for Linux), which lets you run Ubuntu alongside/within Windows pretty easily.
    • C#/.NET runs fine on Linux with the newer .NET runtimes, but the development experience is definitely better on Windows; you can get Visual Studio's free edition, which works better than VS Code's C# support.
    • For programming in general, it depends on what language(s) you want to work with. Javascript/Typescript is fine on Windows, Java is fine on Windows. C and C++ are generally easier on Linux due to not needing to bring in the Microsoft toolchain. I'm not sure about most other languages.
    ithilanor on Steam.

  7. - Top - End - #7
    Colossus in the Playground
     
    BlackDragon

    Join Date
    Feb 2007
    Location
    Manchester, UK
    Gender
    Male

    Default Re: Linux Recommendations

    Quote Originally Posted by IthilanorStPete View Post
    C and C++ are generally easier on Linux due to not needing to bring in the Microsoft toolchain.
    I don't think you do need to use the Microsoft toolchain for those languages? GCC is just as available for Windows as it is for Linux. (Caveat: never used it myself so don't know the ins and outs, I just know it exists).

  8. - Top - End - #8
    Ogre in the Playground
     
    NecromancerGuy

    Join Date
    May 2009

    Default Re: Linux Recommendations

    Quote Originally Posted by factotum View Post
    I don't think you do need to use the Microsoft toolchain for those languages? GCC is just as available for Windows as it is for Linux. (Caveat: never used it myself so don't know the ins and outs, I just know it exists).
    For GCC, you need Cygwin on Windows, or use WSL. Don't know about Clang.
    ithilanor on Steam.

  9. - Top - End - #9
    Colossus in the Playground
     
    BlackDragon

    Join Date
    Feb 2007
    Location
    Manchester, UK
    Gender
    Male

    Default Re: Linux Recommendations

    Quote Originally Posted by IthilanorStPete View Post
    For GCC, you need Cygwin on Windows, or use WSL. Don't know about Clang.
    https://www.mingw-w64.org/

  10. - Top - End - #10
    Bugbear in the Playground
     
    Cicciograna's Avatar

    Join Date
    Nov 2008
    Gender
    Male

    Default Re: Linux Recommendations

    I would suggest Ubuntu because it is generally new user-friendly, and because it has a very large support community. Never underestimate the importance of support websites.

    As for the desktop environment[1], if you are coming from Windows and want to somehow preserve the look and feel, go for KDE.

    [1] "Desktop environment" refers to a group of libraries and components that define the graphical user interface of the operative system, and to other software that plugs into those libraries to provide the programs the user might need. For example, the KDE desktop environment provides a navigational file manager called "Dolphin", which is very similar to the Windows File Manager.
    Last edited by Cicciograna; 2021-09-27 at 10:43 AM.

  11. - Top - End - #11
    Barbarian in the Playground
    Join Date
    Aug 2006
    Gender
    Male

    Default Re: Linux Recommendations

    Quote Originally Posted by Cicciograna View Post
    I would suggest Ubuntu because it is generally new user-friendly, and because it has a very large support community. Never underestimate the importance of support websites.

    As for the desktop environment[1], if you are coming from Windows and want to somehow preserve the look and feel, go for KDE.

    [1] "Desktop environment" refers to a group of libraries and components that define the graphical user interface of the operative system, and to other software that plugs into those libraries to provide the programs the user might need. For example, the KDE desktop environment provides a navigational file manager called "Dolphin", which is very similar to the Windows File Manager.
    Thanks; that's good to know. The odds are really high that I'll have a lot more questions once I actually try this or am getting particularly close to doing so, let alone have actually done it.

  12. - Top - End - #12
    Barbarian in the Playground
     
    PaladinGuy

    Join Date
    Sep 2016

    Default Re: Linux Recommendations

    Quote Originally Posted by Cicciograna View Post
    I would suggest Ubuntu because it is generally new user-friendly, and because it has a very large support community. Never underestimate the importance of support websites.

    As for the desktop environment[1], if you are coming from Windows and want to somehow preserve the look and feel, go for KDE.

    [1] "Desktop environment" refers to a group of libraries and components that define the graphical user interface of the operative system, and to other software that plugs into those libraries to provide the programs the user might need. For example, the KDE desktop environment provides a navigational file manager called "Dolphin", which is very similar to the Windows File Manager.
    As mentioned the choices are split differently to windows.

    Ubuntu Linux makes sense for the Distribution and Operating System.

    Regarding desktop environments
    I like KDE, but it is (was) the most bulky, if the old PC still runs windows fine, there will be no problem.
    If the PC has been basically unusable for years (or you use a Raspberry Pi) then it may struggle.

    LXDE is potentially lighter and modular. Which has advantages and disadvantages. In it's default state it probably resembles Win95 more than anything.

    You can of course mix and match, and indeed decide which to boot into at login.

  13. - Top - End - #13
    Colossus in the Playground
     
    BlackDragon

    Join Date
    Feb 2007
    Location
    Manchester, UK
    Gender
    Male

    Default Re: Linux Recommendations

    Quote Originally Posted by jayem View Post
    As mentioned the choices are split differently to windows.

    Ubuntu Linux makes sense for the Distribution and Operating System.
    Or Mint, or Pop, which are both Ubuntu-based, work pretty much exactly the same with regard to troubleshooting--they just have a different default UI.

  14. - Top - End - #14
    Ogre in the Playground
     
    wkwkwkwk1's Avatar

    Join Date
    Jul 2014
    Gender
    Male

    Default Re: Linux Recommendations

    I will begin by echoing what others have said: you don't need to use Linux for programming, unless you want to fiddle around with the operating system itself. That said, I will encourage you to at least try out Linux, you might find it a pleasant experience! Do note, however, that the "Live USB" versions can be frustrating to work with. Here is my personal experience:

    I have used Linux as my daily driver for the past two years or so, and it has served me well. I suppose I may have just been lucky, but I haven't had any major issues in two different laptops. The issues I did have were, for the most part, caused by my careless experimenting, and solved relatively quickly with an internet search and some elbow grease.

    My experience with Windows has been much more frustrating, so I keep it installed only for specific software which won't run on Linux. Keep in mind that, if you wish to use Windows-specific software on Linux, there's a nifty tool called WINE which is meant to do just that.

    As explained above, some desktop environments look more like Windows' than others, but for the most part you should find most things intuitive. One big difference you should notice straight away is that Linux takes up much fewer resources than Windows, and as such everything should run more smoothly, even on older computers.

    If you keep an open mind and a can-do attitude, it should be very rewarding.

    Quote Originally Posted by jayem View Post
    I like KDE, but it is (was) the most bulky
    Not anymore, it seems
    Avatar by yours truly

    Spoiler: Links & GitP Quotes
    Show
    Quote Originally Posted by fyleisch View Post
    It's come to my attention that some people don't know how to pronounce the name of the deity Fharlanghn. It's simple though - you begin with a Ff- sound, then flap your mouth at random as sounds come out. Continue for 2-90 seconds, depending on devoutness and saliva levels.
    Quote Originally Posted by Dark Shadow View Post
    I think this is the most civil battle between Good and Evil I've ever seen...
    10 Commandments of Op./Practical Op.
    3.5 WBL/GP
    Cleric Domains

  15. - Top - End - #15
    Barbarian in the Playground
     
    BardGuy

    Join Date
    Dec 2018
    Location
    Nexus

    Default Re: Linux Recommendations

    I would recommend Linux Mint for anyone trying out Linux for the first time. I have been using it on and off for a few years and the ease of use and resemblance of windows convinced me personally.
    Last edited by Justanotherhero; 2021-10-05 at 12:11 AM.

  16. - Top - End - #16
    Dwarf in the Playground
     
    yilduz's Avatar

    Join Date
    May 2009

    Default Re: Linux Recommendations

    Quote Originally Posted by Erloas View Post
    (There's a reason I've been hearing from die hard Linux users, for about 22* years now, how Linux is going to overtake windows and how it's so much better, yet still sits at like 2-3% of PC market share.)
    It's the year of the Linux Desktop!
    -Linux Desktop people, every year



    Ubuntu is good because it's user friendly... but it's not a proper production operating system. Learn it, because it is popular for end users and easy to learn, but don't stay exclusively in Ubuntu world. If you want to learn a Linux distro that is valuable in a production environment, learn CentOS. You'll probably actually want to learn Rocky Linux because for internal IBM politics reasons, CentOS is going to change soon. Rocky Linux is going to become what CentOS has always been (literally, exactly what CentOS has always been), but without IBM having a say in how it works. You don't really need to learn what the longbeards are arguing about, though. Let those nerds fight about things in the background, and you focus on you.

    Windows Subsystem for Linux (WSL) mentioned earlier in the thread is also amazing. I use it every day for work and I'm extremely happy with it. I haven't run Linux natively on a laptop since that got good. If you want to simulate what a work environment will be like for many people, run Windows on your computer and use something like VirtualBox to run some Linux virtual machines (without the graphical desktop). You can then ssh into those Linux VMs for whatever Linux server work you need to do. Windows + WSL + Virtualbox gives you the best of all worlds.
    Thank you to Logalmier for the avatar.
    Spoiler
    Show
    Quote Originally Posted by ShneekeyTheLost View Post
    dip a level of Dread Necromancer for Charnel Touch, then Grease yourself, and sneak attack yourself with the Touch.

  17. - Top - End - #17
    Dwarf in the Playground
     
    ziproot's Avatar

    Join Date
    Mar 2021
    Location
    In my room

    Default Re: Linux Recommendations

    I actually started with ChromeOS, as it makes you use the command line for Linux, but if you break it the rest of your computer is fine, and you can always get help along with logs at the same time (you can use neverware cloudready if you have a PC or Macintosh). I then went to Linux Mint, which in my opinion is more user friendly than Ubuntu, and then eventually MX Linux which I think is even better than Linux Mint. But really, any of the above options that have the Xfce desktop environment should be fine.

    EDIT: The reason I said Xfce is because you mentioned having an older computer.
    Last edited by ziproot; 2021-11-13 at 03:33 PM.
    My extended signature

    Quote Originally Posted by Peelee View Post
    Dictionary definitions never win debates, unless the topic up for debate is "what does the dictionary say about this"

  18. - Top - End - #18
    Pixie in the Playground
    Join Date
    Dec 2021

    Default Re: Linux Recommendations

    Linux Mint. Suitable for: Professionals, Developers, Students.
    Manjaro. Suitable for: Beginners.
    openSUSE.
    SparkyLinux.

  19. - Top - End - #19
    Titan in the Playground
     
    Yora's Avatar

    Join Date
    Apr 2009
    Location
    Germany

    Default Re: Linux Recommendations

    I no longer endorse Fedora or KDE. It gets a new OS version every six months, and every time it breaks new things and KDE removes features that I've been using for years. I'll be not using it again when I get me a new computer.
    We are not standing on the shoulders of giants, but on very tall tower of other dwarves.

    Spriggan's Den Heroic Fantasy Roleplaying

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •