131 lines
4.3 KiB
HTML
131 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="MontaukOS User's Manual">
|
|
<title>Connectivity - MontaukOS Tutorials</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Open Sans', Arial, sans-serif;
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding: 1em;
|
|
line-height: 1.5;
|
|
display: flex;
|
|
gap: 2em;
|
|
}
|
|
p { margin: 0 0 0.5em; }
|
|
h2 { margin: 0.5em 0; }
|
|
.sidebar {
|
|
width: 160px;
|
|
flex-shrink: 0;
|
|
}
|
|
.sidebar ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.sidebar li {
|
|
margin: 0.5em 0;
|
|
}
|
|
.sidebar a {
|
|
color: #0066CC;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
.sidebar a:hover {
|
|
color: #004499;
|
|
text-decoration: underline;
|
|
}
|
|
.sidebar hr {
|
|
border: none;
|
|
border-top: 1px solid #999;
|
|
margin: 0.75em 0;
|
|
}
|
|
.main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
a { color: #0000EE; }
|
|
a:visited { color: #0066CC; }
|
|
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
|
|
.box {
|
|
border: 1px solid #999;
|
|
padding: 0.5em;
|
|
margin: 0.5em 0;
|
|
}
|
|
.doc-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.doc-list li {
|
|
margin: 0.75em 0;
|
|
}
|
|
.doc-list a {
|
|
font-weight: 600;
|
|
}
|
|
.doc-list p {
|
|
margin: 0.25em 0 0 1.5em;
|
|
color: #555;
|
|
font-size: 0.9em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="sidebar">
|
|
<ul>
|
|
<li><a href="../index.html">Home</a></li>
|
|
<li><a href="../index.html">Documentation</a></li>
|
|
</ul>
|
|
<hr>
|
|
<ul>
|
|
<li><a href="index.html" class="current">User's Manual</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="main">
|
|
<div class="center">
|
|
<h2>Connecting to a network (and to the Internet) on MontaukOS</h2>
|
|
</div>
|
|
|
|
<hr>
|
|
<p>This tutorial explains how to connect to your local network on MontaukOS.</p>
|
|
<hr><br>
|
|
<p>
|
|
MontaukOS includes drivers for Intel Ethernet adapters, including virtualized adapters found on QEMU and VirtualBox, and adapters used on a wide variety of desktops and laptops. Wireless networking via Wi-Fi is currently not supported.<br><br>
|
|
For most Ethernet configurations, MontaukOS should automatically connect to your local network and obtain an IP address via the DHCP protocol. You can review your network connection using the Network configuration applet:
|
|
<ol>
|
|
<li>Open the applications menu and click on the 'Settings' entry.</li>
|
|
<li>Double-click the 'Network' applet from within the Settings virtual folder.</li>
|
|
</ol>
|
|
<blockquote>
|
|
<img src="images/networkapplet-overview.png" alt="">
|
|
<p>The Network applet displayed on a QEMU/KVM virtual machine (MontaukOS 0.1.5)</p>
|
|
</blockquote>
|
|
If you need to manually configure your connection - such as by setting up a static IP - you can use the "Configure" tab.
|
|
Configuration options include the IP address, subnet mask, gateway IP, and DNS server.
|
|
<blockquote>
|
|
<img src="images/networkapplet-configure.png" alt=""><br><br>
|
|
</blockquote>
|
|
|
|
The 'DHCP' button on the toolbar invokes the DHCP client manually, in the background. MontaukOS otherwise runs the DHCP client automatically once every system startup.<br><br>
|
|
|
|
If the Network applet reports that there is no network adapter present, it is very likely that MontaukOS does not have network drivers for your device. For further troubleshooting, you can use the Devices (<code>devexplorer</code>) app to review
|
|
devices detected by the system, or use the Kernel Log tool to inspect relevant kernel log lines.
|
|
</p>
|
|
<ol>
|
|
|
|
</ol><br>
|
|
<hr>
|
|
|
|
<div class="center">
|
|
<a href="../index.html">Back to Documentation Index</a>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |