> For the complete documentation index, see [llms.txt](https://adeshsingh.gitbook.io/programming/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://adeshsingh.gitbook.io/programming/embedded-linux/embedded-linux-os/installing-ssh-server-dropbear-for-embedded-linux-in-yocto-project.md).

# Installing ssh-server-dropbear for embedded linux in yocto project

## The step-by-step <a href="#the-step-by-step" id="the-step-by-step"></a>

1. Change the `build/conf/local.conf` by adding the following lines
2. ```
   #add the feature :-> ssh-server-dropbear
   EXTRA_IMAGE_FEATURES += "debug-tweaks ssh-server-dropbear"
   ```
3. Choose an image, for example, `core-image-minimal`

   ```
   $compile your source code ..
   $ time bitbake core-image-minimal
   ```

## Run The Image&#x20;

```
# run the final image 
#runqemu <image-name> nographic
runqemu qemux86-64 nographics 
#booting process started 
```

## Check The SSH&#x20;

```
ssh -V  // check version of the dropbear 
```

## Take The SSH &#x20;

```
$ifconfig   # find the ip 

#open the terminal of local machine
#type the command 
ssh root@ip-address
```
