How to update to 11.4 Beta?


 
Thread Tools Search this Thread
Operating Systems Solaris How to update to 11.4 Beta?
# 1  
Old 02-04-2018
How to update to 11.4 Beta?

I am a home user doing development on Solaris 11.3, so I have no support contract. I am trying to update to Solaris 11.4 beta as described here
Updating an Oracle Solaris 11.3 System to Oracle Solaris 11.4 -
Updating Your Operating System to Oracle(R) Solaris 11.4


It says I must first update to Solaris 11.3 SRU23 or newer. Is that possible without a support contract? How can I find out which SRU I am running?
# 2  
Old 02-04-2018
Hi,

I don't think you can. You can only get the SRU updates from the 'support' repo rather than the 'release' repo, so unless you have a support contract you only ever get updates if/when the 'release' repo is updated (which I think only ever happens when a new production point release comes out - 11.2, 11.3, etc). As I understand it, without a support contract the only way to test 11.4 is via a clean install.
# 3  
Old 02-06-2018
Great. I downloaded the USB 11.4 Beta version and wanted to try the GUI. Well, it automatically started to install to my Solaris installation. I thought it would ask me if I really wanted to continue, but nope. It started to write over everything. I rebooted and have now lost my entire Solaris installation. Great.
# 4  
Old 02-06-2018
Download the repository for 11.4 beta on oracle site.

Create a local repository on the machine in question (this will require couple of GB).
Using pkg command, set the publisher to point local repository.

Create a backup boot environment via beadm, which you will revert to if things do not work.
Even tho system update will probably create boot environment automatically i like this clean and named as i want Smilie

Try to update via pkg update --accept from the local repository.

This should update your system from 11.3 to 11.4

Often update from major to major release do state you need some SRU before, but i have tested several upgrades without issues between major releases.

Perhaps those are some borderline cases, but pkg update should fail in that case, leaving you with working environment due to the way solaris is patched.

Hope that helps
Regards
Peasant.
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Red Hat

RedHat 5 update 9 BASH update issue

Hi i want to update the BASH because of the "shell shock" vulnerability. my RedHat 5 is clean install with the default mirror site. when im running the command: yum update bash im getting a message saying there is no update. you can see in the attach picture... what am i doing wrong? is... (4 Replies)
Discussion started by: guy3145
4 Replies

2. Programming

MYSQL - trigger update on record insert or update

Right I have a MYSQL database with table1 with 3 columns, colA, colB and colC. I want to combine the data in the 3 columns into a 4th column names col_comb. Here's the SQL command that works: UPDATE table1 SET `col_comb` = CONCAT( `colA` , ' - ', `colB` , ', ', `colC` ); So now I want this... (5 Replies)
Discussion started by: barrydocks
5 Replies
Login or Register to Ask a Question