You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OracleSolaris_OCI/06_Solaris_On_OCI_Using_CLI/README.md
+34-28
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,7 @@ Note: These are the commands needed as of Nov 2022.
12
12
13
13
1) List the shapes that can be used to launch an instance within the specified compartment and select a shape based on your preference. In this article, we are using the “VM.Standard2.1” shape.
14
14
15
-
Copy code snippet
16
-
Copied to ClipboardError: Could not CopyCopied to ClipboardError: Could not Copy
15
+
```
17
16
$ oci compute shape list --compartment-id ocid1.compartment.oc1..xxxxxxxxxxxxxxxxxxxxxxxxx
3) In the previous command, the "--lisitng-id" is displayed as "id": "61750333", we use this "id" to obtain the "package-version" of the image. I sorted the results by TIMERELEASED in the DESC order to get the latest package version.
173
+
```
174
+
175
+
3) In the previous command, the `--lisitng-id` is displayed as `"id": "61750333"`, we use this `"id"` to obtain the `"package-version"` of the image. I sorted the results by `TIMERELEASED` in the `DESC` order to get the latest package version.
174
176
175
-
Copy code snippet
176
-
Copied to ClipboardError: Could not CopyCopied to ClipboardError: Could not Copy
Note: You can find detailed overview about the 'Marketplace components' and 'Agreements' in this blogpost.
369
371
370
-
5) Terms of use agreement must be signed before launching an instance with that specific "--package-version". The terms of use agreement is required to be signed only once for a specific “--package-version”. It is not required to sign an addiotional agreement if there is already an agreement in place for that particular "--package-version". We can verify if there is an agreement already in place related to the “--compartment-id”, “--listing-id” and “--package-version”.
372
+
5) Terms of use agreement must be signed before launching an instance with that specific `--package-version`. The terms of use agreement is required to be signed only once for a specific `--package-version`. It is not required to sign an addiotional agreement if there is already an agreement in place for that particular `--package-version`. We can verify if there is an agreement already in place related to the `--compartment-id`, `--listing-id` and `--package-version`.
371
373
372
-
Copy code snippet
373
-
Copied to ClipboardError: Could not CopyCopied to ClipboardError: Could not Copy
374
+
```
374
375
$ oci marketplace accepted-agreement list -c ocid1.compartment.oc1..xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx --listing-id 61750333
In the above image, the command resulted in an agreement that is specific to the package version “11.4.47”. Therefore, the user must accept the terms of use agreement for any other “--package-version” if they want to use it.
421
+
```
422
+
423
+
In the above image, the command resulted in an agreement that is specific to the package version `“11.4.47”`. Therefore, the user must accept the terms of use agreement for any other `--package-version` if they want to use it.
421
424
422
-
6) List the agreement using the following command by passing "--listing-id" and "--package-version".
425
+
6) List the agreement using the following command by passing `--listing-id` and `--package-version`.
423
426
424
-
Copy code snippet
425
-
Copied to ClipboardError: Could not CopyCopied to ClipboardError: Could not Copy
427
+
```
426
428
$ oci marketplace agreement list --listing-id 61750333 --package-version 11.4.50
0 commit comments