Re: Which Linux Mint 17.1 to install?

2014-12-22 Thread Keith Smith
I bought the same laptop Joe just bought. First I think you need to go into the bios and turn off secure boot which will automatically set legacy boot mode or maybe you will need to make that chance. Some please verify I have this correct. Then set your boot order to ODD as your first

Re: Which Linux Mint 17.1 to install?

2014-12-22 Thread Todd Millecam
Mint supports secure boot, so you don't even need to go to legacy boot mode (which really only matters if you want a single partition larger than 2TB). On Mon, Dec 22, 2014 at 9:54 AM, Keith Smith techli...@phpcoderusa.com wrote: I bought the same laptop Joe just bought. First I think you

Re: Which Linux Mint 17.1 to install?

2014-12-22 Thread Keith Smith
Interesting!! Thanks!! On 2014-12-22 11:20, Todd Millecam wrote: Mint supports secure boot, so you don't even need to go to legacy boot mode (which really only matters if you want a single partition larger than 2TB). On Mon, Dec 22, 2014 at 9:54 AM, Keith Smith techli...@phpcoderusa.com

Re: Which Linux Mint 17.1 to install?

2014-12-22 Thread Michael Havens
HP no longer supports Linux? That stinks. :-)~MIKE~(-: On Mon, Dec 22, 2014 at 12:10 PM, Keith Smith techli...@phpcoderusa.com wrote: Interesting!! Thanks!! On 2014-12-22 11:20, Todd Millecam wrote: Mint supports secure boot, so you don't even need to go to legacy boot mode (which

Re: Which Linux Mint 17.1 to install?

2014-12-22 Thread Keith Smith
Every Dell I have ever bought runs Linux. Last year when I told the Dell rep I was going to put Linux on the box he offered to send me a recovery disk free of charge. Dell has proven to be Linux friendly. On 2014-12-22 14:17, Michael Havens wrote: HP no longer supports Linux? That

Re: Ubuntu 14.04 LTS

2014-12-22 Thread James Dugger
Hey Keith. Is this for a production or development environment? For prod, I have typically seen no home directory for users other than root (for both Debian based or RHEL). In either distribution you can explicitly assign a different home folder so you can do /var/www/public_html as the

cntrl-c hit before finish of upgrade -- seems to have completed

2014-12-22 Thread Michael Havens
I'm not sure I need to do anything with this now. I was upgrading with apt-get and before it was done pressed cntrl-c before it was done. The last thing it said was that the operation was interrupted. But when I ran the command again the last line of the output said: 0 upgraded, 0 newly

Re: cntrl-c hit before finish of upgrade -- seems to have completed

2014-12-22 Thread der.hans
Am 22. Dez, 2014 schwätzte Michael Havens so: moin moin Mike, interrupting an apt upgrade is usually OK, but it can leave packages in a bad state. If one of those packages are important, then it can be a challenge to recover. In this particular case, you probably need to run dpkg --configure

Re: cntrl-c hit before finish of upgrade -- seems to have completed

2014-12-22 Thread Michael Havens
Thank you der Hans. :-)~MIKE~(-: On Mon, Dec 22, 2014 at 3:01 PM, der.hans pl...@lufthans.com wrote: Am 22. Dez, 2014 schwätzte Michael Havens so: moin moin Mike, interrupting an apt upgrade is usually OK, but it can leave packages in a bad state. If one of those packages are important,

Re: cntrl-c hit before finish of upgrade -- seems to have completed

2014-12-22 Thread Michael Havens
why do I need to run dist-upgrade? :-)~MIKE~(-: On Mon, Dec 22, 2014 at 3:11 PM, Michael Havens bmi...@gmail.com wrote: Thank you der Hans. :-)~MIKE~(-: On Mon, Dec 22, 2014 at 3:01 PM, der.hans pl...@lufthans.com wrote: Am 22. Dez, 2014 schwätzte Michael Havens so: moin moin Mike,

commands

2014-12-22 Thread Michael Havens
I was thinking, I could type in 'sudo apt-get update;sudo apt-get upgrade' but what would be a more efficient way? sudo {apt-get {update; upgrade}} sudo: {apt-get: command not found upgrade}}: command not found sudo apt-get {update; upgrade} E: Invalid operation {update upgrade}: command not

Re: Which Linux Mint 17.1 to install?

2014-12-22 Thread James Dugger
If using laptop for development depending on RAM I would go 64bit so I could run VM's and turn on hardware vitualization. On Dec 22, 2014 1:46 PM, Keith Smith techli...@phpcoderusa.com wrote: Every Dell I have ever bought runs Linux. Last year when I told the Dell rep I was going to put Linux

Re: Ubuntu 14.04 LTS

2014-12-22 Thread Keith Smith
On 2014-12-22 15:33, James Dugger wrote: Hey Keith. Is this for a production or development environment?  Production For prod, I have typically seen no home directory for users other than root (for both Debian based or RHEL).  In either distribution you can explicitly assign a different home

Re: Ubuntu 14.04 LTS

2014-12-22 Thread Kevin Fries
When switching distros, there is often a thousand tiny differences to get used to. Some distros like CentOS are really great as servers but make less desirable desktops. Others like Fedora are just the opposite. In the Ubuntu world, they separate desktop and server versons. It helps to learn

commands

2014-12-22 Thread Matt Birkholz
From: Michael Havens bmi...@gmail.com Date: Mon, 22 Dec 2014 15:46:23 -0700 I was thinking, I could type in 'sudo apt-get update;sudo apt-get upgrade' but what would be a more efficient way? [...] sudo apt-get {update, upgrade} E: Invalid operation {update, This is interesting:

Re: commands

2014-12-22 Thread Kevin Fries
$ sudo apt-get update sudo apt-get upgrade This way, it will only run upgrade if update was successful. (i.e. no network error) Kevin On Dec 22, 2014 3:46 PM, Michael Havens bmi...@gmail.com wrote: I was thinking, I could type in 'sudo apt-get update;sudo apt-get upgrade' but what would be

Re: commands

2014-12-22 Thread Michael Havens
thank you Matt and Kevin. I was looking for a way to combine the two commands with the curly brackets. :-)~MIKE~(-: On Mon, Dec 22, 2014 at 11:36 PM, Matt Birkholz m...@birchwood-abbey.net wrote: From: Michael Havens bmi...@gmail.com Date: Mon, 22 Dec 2014 15:46:23 -0700 I was thinking,

Re: commands

2014-12-22 Thread Kevin Fries
Michael, As Matt said, braces expand into the same command, they are not used for multiple commands. FOR is used for multiple commands. While this is much more work in my opinion, this would also work... provided that there is no error. $ for cmd in update upgrade; do sudo apt-get ${cmd}; done