setup_docs: Extract common unix errors to a shared file.

Prep for organizing common errors into operating system tabs.
This commit is contained in:
Apoorva Pendse
2025-05-20 15:32:24 +02:00
committed by Tim Abbott
parent 3116925a6f
commit c51542e44c
2 changed files with 18 additions and 14 deletions

View File

@@ -754,6 +754,10 @@ WSL instance) is also usually helpful.
```
```{include} setup/unix-troubleshoot.md
```
#### Vagrant was unable to mount VirtualBox shared folders
For the following error:
@@ -780,20 +784,6 @@ $ vagrant up
to reboot the guest. After this, you can do `vagrant provision` and
`vagrant ssh`.
#### Unmet dependencies error
When running `vagrant up` or `provision`, if you see the following error:
```console
==> default: E:unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
```
It means that your local apt repository has been corrupted, which can
usually be resolved by executing the command:
```console
$ apt-get -f install
```
#### os.symlink error

View File

@@ -0,0 +1,14 @@
#### Unmet dependencies error
When running `vagrant up` or `provision`, if you see the following error:
```console
==> default: E:unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
```
It means that your local apt repository has been corrupted, which can
usually be resolved by executing the command:
```console
$ apt-get -f install
```