Page 1 of 1

Upgrade CentOS 7 to CentOS 7.1

Posted: 2015/03/25 12:31:16
by bertan
I've found both of these on the Internet. Which is correct?

Code: Select all

# yum clean all && yum update
or

Code: Select all

# yum -y upgrade

Re: Upgrade CentOS 7 to CentOS 7.1

Posted: 2015/03/25 14:03:44
by stevemowbray
Either will do it. But only once 7.1 is released, which is not yet.

Re: Upgrade CentOS 7 to CentOS 7.1

Posted: 2015/03/25 14:54:20
by avij
Using -y is discouraged for yum operations. Surely you have a few moments to review the changes yum is going to do your system, before letting yum to proceed.

Re: Upgrade CentOS 7 to CentOS 7.1

Posted: 2015/03/25 15:37:55
by bertan
Thank you.