---
title: Installing updates on Solaris 10 from the command line
kind: blog
description: After registering your Solaris system you might want to install updates from the command line. Here's how to do this in one to three easy steps.
words: 27
readingMinutes: 1
created: '2009-10-29T17:11:35.000Z'
updated: '2026-06-27T21:03:45+02:00'
tags:
  - solaris
  - system-administration
---
1.  Check for available updates (optional):  

    ```shell
    smpatch analyze
    ```

2.  Download and install the updates:  

    ```shell
    smpatch update
    ```

3.  If the system requires a reboot, do this as soon as possible by running:  

    ```shell
    init 6
    ```
