-
Notifications
You must be signed in to change notification settings - Fork 0
/
018.pmd
163 lines (116 loc) · 3.73 KB
/
018.pmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
---
title: Start, Shutdown, Login and Logout
description:
How to Start, Shutdown, Login and Logout
tagline: Start, Shutdown, Login and Logout
---
[ℼ](#idxXXX)<br id="idx00">
## List of Contents
* [Debian: Start (Boot)](#idx01)
* [HOST-KEY On Console](#idx01-1)
* [Login tty1](#idx02)
* [Login tty2](#idx03)
* [Login tty3](#idx04)
* [Shutdown](#idx05)
* [Poweroff](#idx06)
* [ACPI Shutdown](#idx07)
* [ssh for the first time](#idx08)
* [ssh WARNING](#idx09)
* [slogin](#idx10)
[ℼ](#)<br id="idx01">
## Debian Start (Boot)
Try to start (boot) your Virtual Debian Machine for the first time.
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-08.jpg" style="width:960px;">
<br>
[ℼ](#)<br><br>
<img src="{{ site.baseurl }}/assets/images/dospA-09.jpg" style="width:960px;">
<br>
[ℼ](#)<br><br>
<img src="{{ site.baseurl }}/assets/images/dospA-10.jpg" style="width:960px;">
<br>
[ℼ](#)<br id="idx01-1">
<br>
## HOST-KEY
To switch from one console to another, use HOST-KEY+Function. The HOST-KEY varies from system to system.
* For Linux, the HOST-KEY is <ALT>
* Windows, the HOST-KEY is <CTRL ALT>
* UTM, the HOST-KEY is <control option>
Example:
* tty1: HOST-KEY F1
* tty2: HOST-KEY F2
* tty3: HOST-KEY F3
* etc.
<img src="{{ site.baseurl }}/assets/images/dospA-11.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx02">
## Login tty1 (HOST-KEY F1)
Try to log in to your Virtual Debian Machine for the first time (tty1).
* Account Name (e.g.): cbkadal
* Remember: <span style="color:red; font-weight:bold; font-size:larger;">you are not cbkadal!</span>
* Console Terminal: tty1
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-12.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx03">
## Login tty2 (HOST-KEY F2)
* Console Terminal: tty2
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-13.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx04">
## Login tty3 (HOST-KEY F3)
* Console Terminal: tty3
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-14.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx05">
## Shutdown
To turn off your system, you can either Shutdown, Poweroff, or ACPI Shutdown (VirtualBox only).
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-15.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx06">
## Poweroff
To turn off your system, you can either Shutdown, Poweroff, or ACPI Shutdown (VirtualBox only).
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-16.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx07">
## ACPI Shutdown (VirtualBox only)
To turn off your system, you can either Shutdown, Poweroff, or ACPI Shutdown (VirtualBox only).
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-17.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx08">
## ssh for the first time
Most will run the Virtual Machine on a Microsoft Windows-based HOST.
But, some may use a GNU/Linux-based HOST.
The following illustrates running SSH from a Microsoft Windows host and GNU/Linux.
In this example, port 22 (guest) is mapped to port 6022 (host).
```
ssh -p 6022 cbkadal@localhost
```
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-18.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx09">
## ssh WARNING
If you get a WARNING like the following, delete the .ssh/known-host file on the host.
```
del .\.ssh\known_hosts
ssh -p 6022 cbkadal@localhost
```
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-20.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idx10">
## slogin
An alternative to "ssh" is "slogin".
```
slogin -p 6022 cbkadal@localhost
```
<br>
<img src="{{ site.baseurl }}/assets/images/dospA-19.jpg" style="width:960px;">
<br><br>
[ℼ](#)<br id="idxXXX">