คำสั่งที่ใช้ในการติดตั้ง
1 2 3 4 5 | sudo apt install apache2 # สั่งให้เริ่มทำงาน และตั้งค่าให้เริ่มทำงานเมื่อเปิดเครื่อง sudo systemctl start apache2 sudo systemctl enable apache2 |
1 2 3 4 5 | sudo apt install apache2 # สั่งให้เริ่มทำงาน และตั้งค่าให้เริ่มทำงานเมื่อเปิดเครื่อง sudo systemctl start apache2 sudo systemctl enable apache2 |
1 2 3 4 5 | # ดูแค่ Hostname อย่างเดียว hostname # ดู Hostname และรายละเอียดอื่นๆ hostnamectl |
1 | sudo hostnamectl set - hostname [new- hostname ] |
1 2 3 | < pre class = "brush:html;highlight:[2]" title = "bash/shell" > ########## YOUR CODE ########## </ pre > |
1 | sudo snap install lxd |
1 2 3 4 | sudo lxd init # เพิ่มเข้ากลุ่ม LXD เวลาใช้งานจะได้ไม่ต้องค่อยพิมพ์ sudo sudo usermod --append -- groups lxd sarankon |
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 | sudo lxd --help Description: The LXD container manager (daemon) This is the LXD daemon command line. It's typically started directly by your init system and interacted with through a tool like `lxc`. There are however a number of subcommands that let you interact directly with the local LXD daemon and which may not be performed through the REST API alone. Usage: lxd [flags] lxd [ command ] Available Commands: activateifneeded Check if LXD should be started help Help about any command import Import existing containers init Configure the LXD daemon shutdown Tell LXD to shutdown all containers and exit version Show the server version waitready Wait for LXD to be ready to process requests Flags: -d, --debug Show all debug messages --group The group of users that will be allowed to talk to LXD -h, --help Print help --logfile Path to the log file --syslog Log to syslog --trace Log tracing targets - v , --verbose Show all information messages --version Print version number Use "lxd [command] --help" for more information about a command . |
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 | sudo lxc --help Description: Command line client for LXD All of LXD's features can be driven through the various commands below. For help with any of those, simply call them with --help. Usage: lxc [ command ] Available Commands: alias Manage command aliases cluster Manage cluster members config Manage container and server configuration options console Attach to container consoles copy Copy containers within or in between LXD instances delete Delete containers and snapshots exec Execute commands in containers export Export container backups file Manage files in containers help Help about any command image Manage images import Import container backups info Show container or server information launch Create and start containers from images list List containers move Move containers within or in between LXD instances network Manage and attach containers to networks operation List, show and delete background operations profile Manage profiles project Manage projects publish Publish containers as images remote Manage the list of remote servers rename Rename containers and snapshots restart Restart containers restore Restore containers from snapshots snapshot Create container snapshots start Start containers stop Stop containers storage Manage storage pools and volumes version Show local and remote versions Flags: --all Show less common commands --debug Show all debug messages --force- local Force using the local unix socket -h, --help Print help --project string Override the source project -q, --quiet Don't show progress information - v , --verbose Show all information messages --version Print version number Use "lxc [command] --help" for more information about a command . |
1 | sudo snap install lxd |
1 | sudo lxd init |
Would you like to use LXD clustering? ( yes /no ) [default=no]:_ Do you want to configure a new storage pool? ( yes /no ) [default= yes ]:_ Name of the new storage pool [default=default]:_ Name of the storage backend to use (btrfs, ceph, dir , lvm, zfs) [default=zfs]:_ Create a new ZFS pool? ( yes /no ) [default= yes ]:_ Would you like to use an existing block device? ( yes /no ) [default=no]:_ Size in GB of the new loop device (1GB minimum) [default=15GB]: 10 Would you like to connect to a MAAS server? ( yes /no ) [default=no]:_ Would you like to create a new local network bridge? ( yes /no ) [default= yes ]:_ What should the new bridge be called? [default=lxdbr0]:_ What IPv4 address should be used? (CIDR subnet notation, “auto” or “none”) [default=auto]:_ What IPv6 address should be used? (CIDR subnet notation, “auto” or “none”) [default=auto]:_ Would you like LXD to be available over the network? ( yes /no ) [default=no]:_ Would you like stale cached images to be updated automatically? ( yes /no ) [default= yes ]:_ Would you like a YAML "lxd init" preseed to be printed? ( yes /no ) [default=no]:_ |