1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ChromebookにCentOS8 インストール

Posted at

インストール時に意外とコマンドが多かったのでメモ

[CTRL]+[ALT]+[T] でターミナル起動
image.png

$ vmc list

image.png

$ vmc start termina

image.png

$ lxc list

image.png

$ lxc image list images: | grep centos

image.png

$ lxc launch images:centos/8-Stream CentOS

image.png

$ lxc list

image.png

$ lxc stop CentOS

image.png

$ lxc start CentOS
$ lxc list

image.png

$ lxc exec CentOS bash

image.png

# ls -a

image.png

コンテナを削除する場合

$ lxc stop CentOS
$ lxc delete CentOS

image.png

最新版にアップデート

# sudo dnf update

必要なコマンドをインストール

# yum install -y man; yum reintall --setopt-tsflags='' -y bash
# yum install -y tree; yum reintall --setopt-tsflags='' -y bash
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?