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: pages/dedibox-kvm-over-ip/how-to/dell-idrac6.mdx
+73-8Lines changed: 73 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,19 +7,19 @@ content:
7
7
paragraph: This page explains how to use the KVM DELL iDRAC 6 on a Scaleway Dedibox
8
8
tags: dedibox kvm idrac
9
9
dates:
10
-
validation: 2024-08-19
10
+
validation: 2025-02-25
11
11
posted: 2021-07-16
12
12
categories:
13
13
- dedibox-servers
14
14
---
15
-
16
15
This page shows you how to use [KVM](/dedibox-kvm-over-ip/concepts/#kvm-over-ip) on a Dedibox with DELL iDRAC 6.
17
16
18
17
<Macroid="requirements" />
19
18
20
19
- A Dedibox account logged into the [console](https://console.online.net)
20
+
- Installed [Podman](https://podman.io/getting-started/installation) on your machine
21
21
- Installed [Java](https://www.java.com/en/download/help/download_options.html) on your local computer
22
-
- A Dedibox server with a [Dell iDRAC 6](https://www.dell.com/support/kbdoc/en-us/000123577/set-up-and-manage-idrac-6-lifecycle-controller-for-dell-poweredge-11g-servers) KVM-over-IP device
22
+
- A Dedibox server with a Dell iDRAC 6 IPMI interface
23
23
24
24
## Creating an iDRAC 6 session
25
25
@@ -35,7 +35,68 @@ This page shows you how to use [KVM](/dedibox-kvm-over-ip/concepts/#kvm-over-ip)
35
35
36
36
The connection URL and your credentials display. Click on the link to access the iDRAC interface.
37
37
38
-
## Accessing the KVM-over-IP device
38
+
39
+
## Accessing the KVM-over-IP device using Podman
40
+
41
+
You can use Docker to access the KVM-over-IP device of your Dedibox.
42
+
43
+
### Installation
44
+
45
+
- On **macOS** run the following command to install Podman:
46
+
```bash
47
+
brew install podman
48
+
```
49
+
- On **Ubuntu** run the following commands to install Podman:
50
+
```bash
51
+
# Ubuntu 20.10 and newer
52
+
sudo apt-get update
53
+
sudo apt-get -y install podman
54
+
```
55
+
- On **Windows** you can install Podman using the [official installer](https://github.com/containers/podman-desktop/releases).
56
+
57
+
### Configuration
58
+
59
+
1. Create (once) a virtual machine:
60
+
```bash
61
+
podman machine init
62
+
```
63
+
64
+
2. Run it with:
65
+
```bash
66
+
podman machine start
67
+
```
68
+
69
+
3. When you have finished, run:
70
+
```bash
71
+
podman container stop -a ; podman container rm -a
72
+
```
73
+
to delete old sessions. You can also run this command if you won't need the virtual machine:
74
+
```bash
75
+
podman machine stop
76
+
```
77
+
78
+
### Pull repository
79
+
80
+
Pull the [iDRAC 6 dockerized](https://hub.docker.com/r/domistyle/idrac6/) Docker repository:
0 commit comments