Page 2 of 2 FirstFirst 12
Results 17 to 22 of 22

Thread: Complicated OS setup, 64/32 Bit, Windows/various linux distros

  1. #17
    mush-mushroom b0redom's Avatar
    Join Date
    Oct 2005
    Location
    Middlesex
    Posts
    3,494
    Thanks
    195
    Thanked
    383 times in 292 posts
    • b0redom's system
      • Motherboard:
      • Some iMac thingy
      • CPU:
      • 3.4Ghz Quad Core i7
      • Memory:
      • 24GB
      • Storage:
      • 3TB Fusion Drive
      • Graphics card(s):
      • nViidia GTX 680MX
      • PSU:
      • Some iMac thingy
      • Case:
      • Late 2012 pointlessly thin iMac enclosure
      • Operating System:
      • OSX 10.8 / Win 7 Pro
      • Monitor(s):
      • Dell 2713H
      • Internet:
      • Be+

    Re: Complicated OS setup, 64/32 Bit, Windows/various linux distros

    Quote Originally Posted by directhex View Post
    What do you plan to get out of Centos? I've never really understood why it exists
    Because the enterprise software vendors, Oracle etc will only support you running on a 'supported' Linux. Centos, as you're aware is a recompile of RHEL, so it has all the same libs etc. Try getting Oracle support to work with you on a debian install.

    It's the same reason there's still a market for Solaris, AIX, HPUX etc.

    No one (sane) would deploy a mission critical app on Centos - as you say it's not great for anything none standard, and you don't get the support you would from RedHat, but for test environments it's as good as the real thing.

  2. #18
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: Complicated OS setup, 64/32 Bit, Windows/various linux distros

    Quote Originally Posted by b0redom View Post
    Because the enterprise software vendors, Oracle etc will only support you running on a 'supported' Linux. Centos, as you're aware is a recompile of RHEL, so it has all the same libs etc. Try getting Oracle support to work with you on a debian install.

    It's the same reason there's still a market for Solaris, AIX, HPUX etc.

    No one (sane) would deploy a mission critical app on Centos - as you say it's not great for anything none standard, and you don't get the support you would from RedHat, but for test environments it's as good as the real thing.
    Oracle won't support Centos either. Proximity to RHEL doesn't help, your big expensive Oracle support contract won't be honoured.

  3. #19
    mush-mushroom b0redom's Avatar
    Join Date
    Oct 2005
    Location
    Middlesex
    Posts
    3,494
    Thanks
    195
    Thanked
    383 times in 292 posts
    • b0redom's system
      • Motherboard:
      • Some iMac thingy
      • CPU:
      • 3.4Ghz Quad Core i7
      • Memory:
      • 24GB
      • Storage:
      • 3TB Fusion Drive
      • Graphics card(s):
      • nViidia GTX 680MX
      • PSU:
      • Some iMac thingy
      • Case:
      • Late 2012 pointlessly thin iMac enclosure
      • Operating System:
      • OSX 10.8 / Win 7 Pro
      • Monitor(s):
      • Dell 2713H
      • Internet:
      • Be+

    Re: Complicated OS setup, 64/32 Bit, Windows/various linux distros

    No they won't, but to all intents and purposes it's the same OS. So you can develop cheaply on Centos and deploy in live, where you do need, and do get, support on RHEL. It's a bit pricey to use RHEL/RHAS as a desktop.

  4. #20
    Registered User
    Join Date
    Feb 2009
    Posts
    4
    Thanks
    0
    Thanked
    1 time in 1 post

    Re: Complicated OS setup, 64/32 Bit, Windows/various linux distros

    I code in VB.net but also work heavily on a couple of linux based projects. As a result, i swear by VirtualBox. If you predominantly need linux support for coding, VirtualBox would be a good way to go!

  5. #21
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: Complicated OS setup, 64/32 Bit, Windows/various linux distros

    Quote Originally Posted by timbomfg View Post
    I code in VB.net but also work heavily on a couple of linux based projects. As a result, i swear by VirtualBox. If you predominantly need linux support for coding, VirtualBox would be a good way to go!
    Code:
    directhex@mortos:/tmp$ lsb_release -d
    Description:	Ubuntu 8.10
    directhex@mortos:/tmp$ cat hello.vb 
    Imports System
     Module Module1
         Sub Main()
             Console.WriteLine ("Hello World")
         End Sub
     End Module
    directhex@mortos:/tmp$ vbnc hello.vb 
     version  (Mono 2.0 - r)
    
    
    
    Assembly 'hello, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' saved successfully to '/tmp/hello.exe'.
    Compilation successful
    Compilation took 00:00:02.5077040
    directhex@mortos:/tmp$ mono hello.exe 
    Hello World
    directhex@mortos:/tmp$

  6. #22
    Member
    Join Date
    Jan 2009
    Posts
    125
    Thanks
    5
    Thanked
    11 times in 11 posts

    Re: Complicated OS setup, 64/32 Bit, Windows/various linux distros

    You could always try the Linux distribution chooser at zegenie studios for a bit of fun - a bit like going to a fortune teller.

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. First Linux Setup
    By Biscuit in forum Software
    Replies: 14
    Last Post: 30-09-2008, 12:31 AM
  2. Replies: 15
    Last Post: 19-10-2006, 12:33 PM
  3. Windows OneCare Live: Has the world gone mad?
    By aidanjt in forum Software
    Replies: 26
    Last Post: 10-02-2006, 07:38 PM
  4. We heard your feedback on Newegg....
    By DR in forum General Discussion
    Replies: 33
    Last Post: 05-03-2005, 08:13 PM

Posting Permissions

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