51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
Deployment
|
|
==========
|
|
|
|
If you don't have the Trisquel netinstall iso inside libvirt you can
|
|
get it by first downloading it in the current directory with the
|
|
following command:
|
|
|
|
```
|
|
$ make
|
|
```
|
|
|
|
Then you can add it to libvirt with the following command:
|
|
|
|
```
|
|
$ ./create-netinstall-volume.sh
|
|
```
|
|
|
|
Then if the VM is not already defined in libvirt, you can use the
|
|
following command to do that:
|
|
|
|
```
|
|
$ ./create-vm.sh
|
|
```
|
|
|
|
You will then need to add an extra storage device to the VM to have
|
|
some storage to install Trisquel on.
|
|
|
|
You can then start the installer and get a console inside it with the
|
|
following commands:
|
|
|
|
```
|
|
$ virsh -c qemu:///system start gnutoo-trisquel-netinstall
|
|
$ ./use-serial-port.sh
|
|
$ virsh -c qemu:///system console gnutoo-trisquel-netinstall
|
|
```
|
|
|
|
License
|
|
=======
|
|
This project 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.
|
|
|
|
This project 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 this project. If not, see <http://www.gnu.org/licenses/>.
|