Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 6341308

Browse files
committed
11.1.0-release
1 parent 9d5e063 commit 6341308

File tree

337 files changed

+8292
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+8292
-166
lines changed

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,17 @@
22
*.swp
33
*.swo
44
.DS_Store
5+
.well-known
6+
google0f6868c6aab885e6.html
7+
yandex_4ac9a54adabb1252.html
8+
b187c77fc7e8.html
9+
basels
10+
bhyvels
11+
imgls
12+
kernells
13+
objls
14+
srcls
15+
cbsd.index
16+
rss.xml
17+
releases/*
18+
downloads/*

_version.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!--#set var="version" value="11.0" -->
1+
<!--#set var="version" value="11.1" -->

de/11.1/currentver.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<center><p style="color:RED">Attention! Current pages describe <strong>CBSD</strong> version <b>10.3.0</b>. If you are using an older version, please update first.</p></center>

de/11.1/modules/bsdconf.d.html

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<h1><span>Working with passwd(1), sysrc(8), service(8) in jail via CBSD</span></h1>
2+
3+
<h2><a name="bsdconf_cmd">Commands: passwd, sysrc, service</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd passwd
7+
</pre>
8+
<pre class="brush:bash;ruler:true;">
9+
% cbsd sysrc
10+
</pre>
11+
<pre class="brush:bash;ruler:true;">
12+
% cbsd service
13+
</pre>
14+
<p><strong>Description</strong>:</p>
15+
<p>Commands from <strong>bsdconf.d</strong> module - is a wrapper around the standard FreeBSD <a href="http://man.freebsd.org/sysrc/8" target="_blank">sysrc(8)</a>, <a href="http://man.freebsd.org/service/8" target="_blank">service(8)</a>, <a href="http://man.freebsd.org/passwd/1" target="_blank">passwd(1)</a> for adding <strong>jname</strong> argument for more convenient work with the services and password in jail from the master host.</p>
16+
<p>Via <strong>jname=</strong> argument specified jail, all that comes after (except passwd, which has yet possible user= ) - not analyzed and treated appropriately utitites as is.</p>
17+
<p><strong>Example1:</strong> Mark sshd service in jail1 as active:</p>
18+
<pre class="brush:bash;ruler:true;">
19+
% cbsd sysrc jname=jail1 sshd_enable="YES"
20+
</pre>
21+
<p><strong>Example2:</strong> Get list of services from jail1:</p>
22+
<pre class="brush:bash;ruler:true;">
23+
% cbsd sysrc jname=jail1 service -l
24+
</pre>
25+
<p><strong>Example3:</strong> Start sshd service in jail1:</p>
26+
<pre class="brush:bash;ruler:true;">
27+
% cbsd service jname=jail1 sshd start
28+
</pre>
29+
<p><strong>Example4:</strong> Change password for root user in jail1:</p>
30+
<pre class="brush:bash;ruler:true;">
31+
% cbsd passwd
32+
</pre>
33+
<p><strong>Example5:</strong> Change password for web user in jail1:</p>
34+
<pre class="brush:bash;ruler:true;">
35+
% cbsd passwd user=web jname=jail1
36+
</pre>
37+
</div>

de/11.1/modules/bsdconf.d_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="bsdconf.d.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/modules/pkg.d.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<h1><span>Wirking with packages and pkg(7) in jail via CBSD </span></h1>
2+
3+
<h2><a name="pkd_cmd">Command: pkg</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd pkg
7+
</pre>
8+
<p><strong>Description</strong>:</p>
9+
<p><strong>cbsd pkg</strong> - is wrapper around stanart FreeBSD <a href="http://man.freebsd.org/pkg/7" target="_blank">pkg(7)</a> tools for adding <strong>jname</strong> argument for more convenient work with the jail from the master host</p>
10+
<p>Via <strong>mode=</strong> argument indicating a needet action. Values can be:</p>
11+
<ul>
12+
<li>add,install - to install packages</li>
13+
<li>remove - to remove packages</li>
14+
<li>bootstrap - init pkg (normally done in the jail one times on creating)</li>
15+
<li>info, query - execute queries <em>info</em> or <em>query</em> with the same syntax pkg</li>
16+
<li>update - execute pkg update</li>
17+
<li>upgrade - execute upgrade</li>
18+
</ul>
19+
<p>Keep in mind that must first be specified parameters <strong>mode</strong> and <strong>jname</strong>. All that comes after - not analyzed and treated <a href="http://man.freebsd.org/pkg/7" target="_blank">pkg(7)</a> as is.</p>
20+
<p>In addition, please note that all operations are performed with the argument <strong>-y</strong> to suppress the interactivity that basically, you need to work in automated scripts.</p>
21+
<p><strong>Example1:</strong> Get installed packages frin jail1:</p>
22+
<pre class="brush:bash;ruler:true;">
23+
% cbsd pkg mode=query jname=jail1 %o
24+
</pre>
25+
<p><strong>Example2:</strong> Install bash, mc, wget in mytest1 jail:</p>
26+
<pre class="brush:bash;ruler:true;">
27+
% cbsd pkg mode=install jname=mytest1 bash mc wget
28+
</pre>
29+
<p>or that much better (in order to avoid the same name in different categories) indicate origin package, not the name:</p>
30+
<pre class="brush:bash;ruler:true;">
31+
% cbsd pkg mode=install jname=mytest1 shells/bash ftp/wget misc/mc
32+
</pre>
33+
<p><strong>Example3:</strong> Upgrade mc package in jail1:</p>
34+
<pre class="brush:bash;ruler:true;">
35+
% cbsd pkg mode=upgrade jname=jail1 mc
36+
</pre>
37+
<p><strong>Example4:</strong> Upgrade all packages in jail1:</p>
38+
<pre class="brush:bash;ruler:true;">
39+
% cbsd pkg mode=upgrade jname=jail1
40+
</pre>
41+
<p><strong>Example5:</strong> Remove wget and lsof packages:</p>
42+
<pre class="brush:bash;ruler:true;">
43+
% cbsd pkg mode=remove jname=jail1 wget lsof
44+
</pre>
45+
</div>

de/11.1/modules/pkg.d_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="pkg.d.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bclone.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<h1><span>Cloning a Virtual Machine</span></h1>
2+
3+
<h2><a name="bclone_cmd">command: bclone</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd bclone
7+
</pre>
8+
<pre class="brush:bash;ruler:true;">
9+
% cbsd brclone
10+
</pre>
11+
<p><strong>Description</strong>:</p>
12+
<p>Performs cloning a virtual machine to a new one. As required arguments, specify source/original VM through <strong>old</strong> and a new name as an argument <strong>new</strong></p>
13+
<p><strong>Example:</strong> Cloning a virtual machine in debian1 to debian2:</p>
14+
<pre class="brush:bash;ruler:true;">
15+
% cbsd bclone old=debian1 new=debian2
16+
</pre>
17+
</div>

de/11.1/wf_bclone_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bclone.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bconfig.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h1><span>Virtual Machine Configuring</span></h1>
2+
<h2><a name="bconfig_cmd">commands: bconfig, bset</a></h2>
3+
<div class="block">
4+
<pre class="brush:bash;ruler:true;">
5+
% cbsd bconfig
6+
% cbsd bset
7+
</pre>
8+
<p><strong>Description</strong>:</p>
9+
<p>Configuring the Virtual Machine Settings</p>
10+
<p>Each virtual machine <strong>CBSD</strong> stores the settings in the SQLite3 database. To change the settings of a VM can serve command <strong>cbsd bconfig</strong>, TUI launches menu for changing the basic settings.</p>
11+
<p>Description of relevant parameters, you can read on the page <a href="/<!--#echo var="lang" -->/<!--#echo var="version" -->/wf_bcreate_ssi.html">VM create</a>
12+
</div>

de/11.1/wf_bconfig_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bconfig.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bcreate.html

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<h1><span>bhyve virtual machine create via dialog menu</span></h1>
2+
3+
<h2><a name="jcreate_cmd">Commands: bcreate, bconstruct-tui</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler=true;">
6+
% cbsd bconstruct-tui
7+
% cbsd bcreate jconf=/path/to/conf.jconf
8+
</pre>
9+
</div>
10+
<div class="block">
11+
<strong>Description:</strong>
12+
<p>The virtual machine is created on a pre-formed configuration file through <strong>cbsd bcreate jconf=path_to_cfg</strong>.</p>
13+
<p>For the configuration process, you can use the script <strong>cbsd bconstruct-tui</strong>, or use WEB interface.</p>
14+
<p>To create a via DIALOG:</p>
15+
<pre class="brush:bash;ruler=true;">
16+
% cbsd bconstruct-tui
17+
</pre>
18+
<p>The same menu is available to create a jail when configuring <strong>CBSD</strong> via bsdconfig</p>
19+
<p class="text-center"><img src="/img/cbsd_syntax3.png" alt="" /></p>
20+
<p>If <strong>bconstruct-tui</strong> worked correctly, at the end you will be asked to create a virtual machine. In the case of positive response, <strong>bcreate</strong> will be made to the new configuration automatically. Otherwise, script displays the path to the configuration file (in <em>$workdir/tmp</em>), on which you can create a VM.</p>
21+
</div>
22+
<div class="block">
23+
<p>Options and their brief description, which appear in the dialogue form. Depending on the type and profile of the OS, some of them may not be available:</p>
24+
<ul>
25+
<li>vm_os_type - type of OS. Depending on the type of the guest OS will be offered a particular profile set distributions</li>
26+
<li>vm_os_profile - select the profile distribution. A profile can contain as proposed default parameters described below, as well as specific distro settings (URL for the image, kernel boot options, etc.)</li>
27+
<li>imgsize - Size for the first virtual image. If the guest OS - FreeBSD profile and FreeBSD-from-jail (image generation through jail2iso), this parameter indicates the amount of free space after copying distribution</li>
28+
<li>jname - the name of the virtual machine, in a one word.</li>
29+
<li>host_hostname - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: set the hostname in /etc/rc.conf guest OS to the appropriate value</li>
30+
<li>vm_ram - allocated RAM</li>
31+
<li>vm_cpus - the number of virtual cores</li>
32+
<li>vm_hostbridge - guest OS host bridge. Maybe hostbridge or amd_hostbridge (affects the PCI vendor ID)</li>
33+
<li>astart - sign automatically start the virtual machine with the boot node</li>
34+
<li>interface - uplink interface for tap-interface, the first network card of the virtual machine</li>
35+
<li>pkglist - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: select the appropriate pekedzhi to be pre-installed in the created VM</li>
36+
<li>ip4_addr - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: set the ifconfig_NIC /etc/rc.conf in the guest OS to the appropriate value - can be an IP address or a 'DHCP'</li>
37+
<li>gw4 - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: install defaultrouter parameter /etc/rc.conf guest OS to the appropriate value</li>
38+
<li>ver - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: use the base and kernel of the specified version (for example 10.1, 11.0, 12)</li>
39+
<li>applytpl - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: whether to apply additional settings (/etc/hosts, /etc/make.conf)</li>
40+
<li>floatresolv - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: set /etc/resolv.conf servers listed in the parameter jnameserver</li>
41+
<li>arch - relevant only to the guest OS FreeBSD and Profile FreeBSD-from-jail: use the base and kernel of this architecture (eg i386, amd64)</li>
42+
</ul>
43+

de/11.1/wf_bcreate_ssi.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bcreate.html" -->
5+
6+
<!-- Not for text help part -->
7+
<div class="block">
8+
<p><strong>Example:</strong></p>
9+
<pre class="brush:bash;ruler=true;">
10+
% cbsd bconstruct-tui
11+
</pre>
12+
<p class="text-center"><img src="/img/bcreate7.png" alt="" /></p>
13+
<p>Guest OS type:</p>
14+
<p class="text-center"><img src="/img/bcreate8.png" alt="" /></p>
15+
<p>Choosing profile for Linux type guest:</p>
16+
<p class="text-center"><img src="/img/bcreate9.png" alt="" /></p>
17+
<p>Choosing VM name:</p>
18+
<p class="text-center"><img src="/img/bcreate10.png" alt="" /></p>
19+
<p>Choosing bhyve UEFI boot method:</p>
20+
<p class="text-center"><img src="/img/bcreate11.png" alt="" /></p>
21+
<p>Choosing bhyve VNC params:</p>
22+
<p class="text-center"><img src="/img/bcreate12.png" alt="" /></p>
23+
<p>Choosing bhyve params:</p>
24+
<p class="text-center"><img src="/img/bcreate13.png" alt="" /></p>
25+
</div>
26+
27+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bexport.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<h1><span>Virtual Machine EXport</span></h1>
2+
3+
<h2><a name="bexport_cmd">command: bexport</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd bexport
7+
</pre>
8+
<p><strong>Description</strong>:</p>
9+
<p>Export the VM file (* .img). The argument <strong>jname</strong> the name of the virtual machine. img-file is saved in the directory <em>$workdir/export</em>. The original VM after exporting remains unchanged.</p>
10+
<p><strong>EXample</strong> (export VM debian1 to $workdir/export/debian1.img):</p>
11+
<pre class="brush:bash;ruler:true;">
12+
% cbsd bexport jname=debian1
13+
</pre>
14+
</div>
15+

de/11.1/wf_bexport_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bexport.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bimport.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<h1><span>Virtual Machine Import</span></h1>
2+
3+
<h2><a name="jimport_cmd">command: bimport</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd bimport
7+
</pre>
8+
<strong>Description</strong>:
9+
<p>Import from image (* .img) virtual machine. The argument <strong>jname</strong> the full path to the file or the name of the image (without extension .<strong>img</strong>), which must be located in the appropriate directory (<em>$workdir/import</em>). <strong>img</strong>-file after the import is still in place. Additionally, you can import a virtual machine from an image in the alternate name (for example, you want to deploy the image of the debian1 from debian1.img, however, your system already has a VM with the same name). In this case, use the argument <strong>newjname</strong></p>
10+
<p><strong>Example:</strong></p>
11+
<p>Import virtual machine from the file <em>/tmp/debian1.img</em>:</p>
12+
<pre class="brush:bash;ruler:true;">
13+
% cbsd bimport jname=/tmp/debian1.img
14+
</pre>
15+
<p>Import debian2.img placed in <em>$workdir/import</em> under new name <strong>debian5</strong>:</p>
16+
<pre class="brush:bash;ruler:true;">
17+
% cbsd bimport jname=debian2 newjname=debian5
18+
</pre>
19+
</div>

de/11.1/wf_bimport_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bimport.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_blogin.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<h1><span>Attaching to terminal</span></h1>
2+
3+
<h2><a name="blogin_cmd">command: blogin</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd blogin
7+
</pre>
8+
<p><strong>Description</strong>:</p>
9+
<p>Execute <strong>tmux</strong> session, connecting to the console output of the virtual machine</p>
10+
<p>To disconnect from the terminal (and off tmux session), press the key combination: <strong>Ctrl+b, d</strong> (Hold Ctrl press b, release both key and hit d)</p>
11+
<p><strong>Example</strong>:</p>
12+
<pre class="brush:bash;ruler:true;">
13+
% cbsd blogin debian1
14+
</pre>
15+
<p class="text-center"><img src="/img/blogin1.png" alt="" /></p>
16+
<p class="text-center"><img src="/img/blogin2.png" alt="" /></p>
17+
</div>

de/11.1/wf_blogin_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_blogin.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bls.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<h1><span>List of Virtual Machines</span></h1>
2+
3+
<h2><a name="bls_cmd">comannd bls</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd bls
7+
</pre>
8+
<strong>Description</strong>:
9+
<p>Displays the list of virtual machines on the local node or all of the added nodes. through argument <strong>display</strong> you can specify the fields to fetch the data. If <strong>display</strong> not specified, the value specified in the file <em>$workdir/etc/defaults/jls.conf</em>, which you can change at its discretion through <em>$workdir/etc/bls.conf</em></p>
10+
<p>All possible parameters for samples described in the file <em>$workdir/share/local-bhyve.schema</em></p>
11+
<ul>
12+
<li><strong>JNAME</strong>&nbsp;— Name of virtual machine</li>
13+
<li><strong>VM_RAM</strong>&nbsp;— memory space, in MB</li>
14+
<li><strong>VM_CPUS</strong>&nbsp;— The number of virtual CPU cores</li>
15+
<li><strong>VM_OS_TYPE</strong>&nbsp;— Guest OS type</li>
16+
<li><strong>PATH</strong>&nbsp;— directory in which there are images of hard disks of the virtual machine</li>
17+
<li><strong>STATUS</strong>&nbsp;— state of virtual machine</li>
18+
</ul>
19+
<p>If added to the local server RSA/DSA keys remote node, you can display all the virtual machines in the farm through</p>
20+
<pre class="brush:bash;ruler:true;">
21+
% cbsd bls alljails=1
22+
</pre>
23+
<p>or</p>
24+
<pre class="brush:bash;ruler:true;">
25+
% cbsd bls alljails=1 shownode=1
26+
</pre>
27+
<p>to display the name of the node that hosts this virtual machine.</p>
28+
<p><strong>Example</strong>:</p>
29+
<pre class="brush:bash;ruler:true;">
30+
% cbsd bls
31+
</pre>
32+
<p class="text-center"><img src="/img/bls1.png" alt="" /></p>
33+
</div>

de/11.1/wf_bls_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bls.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_bremove.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<h1><span>Removal Virtual Machine</span></h1>
2+
3+
<h2><a name="bremove_cmd">command: bremove</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd bremove jail1 jail2 ..
7+
</pre>
8+
<p><strong>Description</strong>:</p>
9+
<p>Removing a virtual machine affects all files in one way or another connected with the VM:</p>
10+
<ul>
11+
<li>a) directory or ZFS fileset with images of virtual machine</li>
12+
<li>b) statistics and the description of the virtual machine</li>
13+
<li>c) snapshots, if it was</li>
14+
</ul>
15+
<p>In case when <strong>bremove</strong> runs on a running virtual machine, the work of the guest OS is automatically interrupted.</p>
16+
<p>&nbsp;</p>
17+
<p><strong>Example</strong>:</p>
18+
<pre class="brush:bash;ruler:true;">
19+
% cbsd bremove redhat1
20+
</pre>
21+
</div>

de/11.1/wf_bremove_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_bremove.html" -->
5+
<!--# include file="/en/_end.html" -->

de/11.1/wf_brename.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<h1><span>Virtual Machine Renaming</span></h1>
2+
3+
<h2><a name="brename_cmd">command: brename</a></h2>
4+
<div class="block">
5+
<pre class="brush:bash;ruler:true;">
6+
% cbsd brename
7+
</pre>
8+
<p><strong>Description</strong>:</p>
9+
<p>Performs renaming the virtual machine and the corresponding directory data in the new name. Can be executed only on the inactive virtual machine. As required parameters:</p>
10+
<ul>
11+
<li><strong>old</strong>&nbsp;— old VM name</li>
12+
<li><strong>new</strong>&nbsp;— new VM name</li>
13+
</ul>
14+
<p><strong>Example</strong> (renaming debian1 VM into debian50:</p>
15+
<pre class="brush:bash;ruler:true;">
16+
% cbsd brename old=debian1 new=debian50
17+
</pre>
18+
</div>
19+

de/11.1/wf_brename_ssi.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--# include file="/en/_start.html" -->
2+
<!--# include file="/en/currentver.html" -->
3+
<!--# include file="/en/translate.html" -->
4+
<!--# include file="wf_brename.html" -->
5+
<!--# include file="/en/_end.html" -->

0 commit comments

Comments
 (0)