# Use Intel architecture terminal shell on Apple Silicon Macs💻

To use the Intel-based terminal on an Apple Silicon Mac, we need Rosetta, to install using the command given below to install Rosetta on your Mac:

### Install Rosetta

```bash
softwareupdate --install-rosetta
```

Now, that Rosetta is installed on your Mac, you can execute any command on your Mac terminal through the Intel architecture using the prefix `arch -x86_64`. To check out which architecture you're currently using type the following command on your terminal

```bash
arch
```

After typing the above command your terminal might have returned the value `arm64` which means that you are currently using Apple Silicon-based terminal as such.

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1675248363054/2a038cdb-a53b-484a-b101-12a8ce668dae.png align="center")

Now, If you wish to use the Intel architecture only once you can use the `arch -x86_64` followed by the command you wish to execute for example

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1675248615370/bcbde79d-1d0d-4e7c-9ec9-9f2a8c2f28f8.png align="center")

### Use the Intel architecture terminal

Now, If you wish to completely use the terminal on Intel architecture without needing to type the prefix `arch -x86_64` all the time for every command, we can simply log in to the Intel terminal through the command:

```bash
arch -x86_64 $SHELL --login
```

To confirm whether you are successfully logged in to the Intel architecture terminal, you just need to type the `arch` command again and if it returns `i386` then congratulations you've successfully made your Apple Silicon Mac run the Intel architecture terminal🎉

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1675248875017/c82ee4d4-7b60-4e7d-8c95-985180df6579.png align="center")

A like is appreciated if this blog helped you with your required topic :)
