327 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			327 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <!--
 | |
| This file is part of Linode Manager Classic.
 | |
| 
 | |
| Linode Manager Classic is free software: you can redistribute it and/or modify
 | |
| it under the terms of the GNU General Public License as published by
 | |
| the Free Software Foundation, either version 3 of the License, or
 | |
| (at your option) any later version.
 | |
| 
 | |
| Linode Manager Classic is distributed in the hope that it will be useful,
 | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| GNU General Public License for more details.
 | |
| 
 | |
| You should have received a copy of the GNU General Public License
 | |
| along with Linode Manager Classic.  If not, see <https://www.gnu.org/licenses/>.
 | |
| -->
 | |
| <!DOCTYPE HTML>
 | |
| <html lang="en">
 | |
| 	<head>
 | |
| 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | |
| 		<title>LMC - Edit Configuration Profile</title>
 | |
| 		<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
 | |
| 		<link rel="stylesheet" type="text/css" href="config.css" />
 | |
| 		<script src="config.js" type="module"></script>
 | |
| 	</head>
 | |
| 	<body>
 | |
| 		<!--#include virtual="/include/header.html"-->
 | |
| 		<!--#include virtual="/include/linode_subnav.html"-->
 | |
| 		<div id="main-content" class="wrapper">
 | |
| 			<div id="top-links"><a href="/linodes">Linodes</a> » <span id="linode-tag"><a id="linode-tag-link" href=""></a> » </span><a id="linode-label" href="/linodes/dashboard?lid=0"></a> » <span class="top-links-title">Edit Configuration Profile</span></div>
 | |
| 			<div id="config">
 | |
| 				<table class="lmc-table">
 | |
| 					<thead>
 | |
| 						<tr>
 | |
| 							<td colspan="3">Configuration Profile</td>
 | |
| 						</tr>
 | |
| 						<tr>
 | |
| 							<td colspan="3">Label and Notes</td>
 | |
| 						</tr>
 | |
| 					</thead>
 | |
| 					<tbody>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Label</td>
 | |
| 							<td colspan="2"><input id="label" type="text" value="New Profile" maxlength="48" size="50" /></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Notes</td>
 | |
| 							<td colspan="2"><textarea id="notes" rows="3" cols="60"></textarea></td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody class="lmc-tbody-head">
 | |
| 						<tr class="noshow">
 | |
| 							<td colspan="3"></td>
 | |
| 						</tr>
 | |
| 						<tr>
 | |
| 							<td colspan="3">Virtual Machine Mode</td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>VM Mode</td>
 | |
| 							<td>
 | |
| 								<input checked id="paravirt" type="radio" name="vm-mode" />
 | |
| 								<label for="paravirt">Paravirtualization</label><br />
 | |
| 								<input id="fullvirt" type="radio" name="vm-mode" />
 | |
| 								<label for="fullvirt">Full-virtualization</label>
 | |
| 							</td>
 | |
| 							<td>
 | |
| 								<span class="info">
 | |
| 									Controls if devices inside your virtual machine are paravirtualized or fully virtualized.<br />
 | |
| 									Paravirt is what you want, unless you're doing weird things.
 | |
| 								</span>
 | |
| 							</td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody class="lmc-tbody-head">
 | |
| 						<tr class="noshow">
 | |
| 							<td colspan="3"></td>
 | |
| 						</tr>
 | |
| 						<tr>
 | |
| 							<td colspan="3">Boot Settings</td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Kernel</td>
 | |
| 							<td colspan="2">
 | |
| 								<select id="kernel"></select>
 | |
| 							</td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Run Level</td>
 | |
| 							<td colspan="2">
 | |
| 								<input checked id="default" type="radio" name="run-level" />
 | |
| 								<label for="default">Default Run Level</label><br />
 | |
| 								<input id="single" type="radio" name="run-level" />
 | |
| 								<label for="single">Single user mode</label><br />
 | |
| 								<input id="binbash" type="radio" name="run-level" />
 | |
| 								<label for="binbash">init=/bin/bash</label>
 | |
| 							</td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Memory Limit</td>
 | |
| 							<td colspan="2">
 | |
| 								<input id="limit" type="radio" name="mem-limit" />
 | |
| 								<label for="limit">Limit to</label> <input id="mem-limit" type="number" min="0" value="0" /> MB<br />
 | |
| 								<input checked id="no-limit" type="radio" name="mem-limit" />
 | |
| 								<label for="no-limit">Maximum (<span id="max-mem"></span> MB)</label>
 | |
| 							</td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody class="lmc-tbody-head">
 | |
| 						<tr class="noshow">
 | |
| 							<td colspan="3"></td>
 | |
| 						</tr>
 | |
| 						<tr>
 | |
| 							<td colspan="3">Block Device Assignment</td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>/dev/sda</td>
 | |
| 							<td>
 | |
| 								<select id="sda" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>/dev/sdb</td>
 | |
| 							<td>
 | |
| 								<select id="sdb" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>/dev/sdc</td>
 | |
| 							<td>
 | |
| 								<select id="sdc" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>/dev/sdd</td>
 | |
| 							<td>
 | |
| 								<select id="sdd" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3 fullvirt-hide">
 | |
| 							<td>/dev/sde</td>
 | |
| 							<td>
 | |
| 								<select id="sde" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3 fullvirt-hide">
 | |
| 							<td>/dev/sdf</td>
 | |
| 							<td>
 | |
| 								<select id="sdf" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3 fullvirt-hide">
 | |
| 							<td>/dev/sdg</td>
 | |
| 							<td>
 | |
| 								<select id="sdg" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3 fullvirt-hide">
 | |
| 							<td>/dev/sdh</td>
 | |
| 							<td>
 | |
| 								<select id="sdh" class="drive">
 | |
| 									<option selected value="0">-- None --</option>
 | |
| 									<optgroup class="disks" label="Disks">
 | |
| 										<option value="disk-25665">Recovery - Finnix (iso)</option>
 | |
| 									</optgroup>
 | |
| 									<optgroup class="volumes" label="Volumes"></optgroup>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>initrd</td>
 | |
| 							<td>
 | |
| 								<select id="initrd">
 | |
| 									<option selected value="0">-- No initrd --</option>
 | |
| 									<option value="25669">Recovery - Finnix (initrd)</option>
 | |
| 								</select>
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>root / boot device</td>
 | |
| 							<td>
 | |
| 								<input checked id="standard" type="radio" name="boot-device" />
 | |
| 								<label for="standard">Standard: </label>
 | |
| 								<select id="boot-device-standard">
 | |
| 									<option value="/dev/sda">/dev/sda</option>
 | |
| 									<option value="/dev/sdb">/dev/sdb</option>
 | |
| 									<option value="/dev/sdc">/dev/sdc</option>
 | |
| 									<option value="/dev/sdd">/dev/sdd</option>
 | |
| 									<option value="/dev/sde">/dev/sde</option>
 | |
| 									<option value="/dev/sdf">/dev/sdf</option>
 | |
| 									<option value="/dev/sdg">/dev/sdg</option>
 | |
| 									<option value="/dev/sdh">/dev/sdh</option>
 | |
| 								</select><br />
 | |
| 								<input id="custom" type="radio" name="boot-device" />
 | |
| 								<label for="custom">Custom: </label>
 | |
| 								<input id="boot-device-custom" type="text" value="" />
 | |
| 							</td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody class="lmc-tbody-head">
 | |
| 						<tr class="noshow">
 | |
| 							<td colspan="3"></td>
 | |
| 						</tr>
 | |
| 						<tr>
 | |
| 							<td colspan="3">Filesystem/Boot Helpers</td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 					<tbody>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Distro Helper</td>
 | |
| 							<td>
 | |
| 								<input checked id="distro-helper" type="radio" name="distro-helper" />
 | |
| 								<label for="distro-helper">Yes</label>
 | |
| 								<input id="distro-helper-no" type="radio" name="distro-helper" />
 | |
| 								<label for="distro-helper-no">No</label>
 | |
| 							</td>
 | |
| 							<td><span class="info">Helps maintain correct inittab/upstart console device</span></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Disable updatedb</td>
 | |
| 							<td>
 | |
| 								<input checked id="updatedb-helper" type="radio" name="updatedb-helper" />
 | |
| 								<label for="updatedb-helper">Yes</label>
 | |
| 								<input id="updatedb-helper-no" type="radio" name="updatedb-helper" />
 | |
| 								<label for="updatedb-helper-no">No</label>
 | |
| 							</td>
 | |
| 							<td><span class="info">Disables updatedb cron job to avoid disk thrashing</span></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>modules.dep Helper</td>
 | |
| 							<td>
 | |
| 								<input checked id="modules-helper" type="radio" name="modules-helper" />
 | |
| 								<label for="modules-helper">Yes</label>
 | |
| 								<input id="modules-helper-no" type="radio" name="modules-helper" />
 | |
| 								<label for="modules-helper-no">No</label>
 | |
| 							</td>
 | |
| 							<td><span class="info">Creates a modules dependency file for the kernel you run</span></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Automount devtmpfs</td>
 | |
| 							<td>
 | |
| 								<input checked id="devtmpfs-helper" type="radio" name="devtmpfs-helper" />
 | |
| 								<label for="devtmpfs-helper">Yes</label>
 | |
| 								<input id="devtmpfs-helper-no" type="radio" name="devtmpfs-helper" />
 | |
| 								<label for="devtmpfs-helper-no">No</label>
 | |
| 							</td>
 | |
| 							<td><span class="info">Controls if pv_ops kernels automount devtmpfs at boot</span></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td>Auto-configure Networking</td>
 | |
| 							<td>
 | |
| 								<input id="network-helper" type="radio" name="network-helper" />
 | |
| 								<label for="network-helper">Yes</label>
 | |
| 								<input id="network-helper-no" type="radio" name="network-helper" />
 | |
| 								<label for="network-helper-no">No</label>
 | |
| 							</td>
 | |
| 							<td><span class="info">Automatically configure static networking <a href="https://www.linode.com/docs/platform/network-helper" target="_blank">(more info)</a></span></td>
 | |
| 						</tr>
 | |
| 						<tr class="lmc-tr3">
 | |
| 							<td></td>
 | |
| 							<td><button disabled id="save-button" type="button">Save Changes</button></td>
 | |
| 							<td></td>
 | |
| 						</tr>
 | |
| 					</tbody>
 | |
| 				</table>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</body>
 | |
| </html>
 |