0
1

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 3 years have passed since last update.

chromebookのLinux(Debian)のバージョンを11に上げてみる

Last updated at Posted at 2021-11-18

chromebookのLinux(Debian)のバージョンは10.11でした。
どうやら11に上げることができるようなので、やってみました。

基本的に以下のサイトを参考にやっていくだけです。

##確認作業
まずはバージョンの確認から。

$ cat /etc/debian_version
10.11

パッケージマネージャーの確認。

$ cat /etc/apt/sources.list
# Generated by distrobuilder
deb https://deb.debian.org/debian buster main
deb https://deb.debian.org/debian-security buster/updates main

##アップデート作業開始

まずはaptitudeをインストール

$ sudo apt-get update
$ sudo apt install aptitude

etc/apt/sources.listを編集します
busterをstableに、contribを追加します

$ sudo vi /etc/apt/sources.list
deb https://deb.debian.org/debian stable main contrib
deb https://deb.debian.org/debian-security stable/updates main contrib

では、Debianをアップデート!!

$ sudo aptitude update
$ sudo aptitude full-upgrade

いろいろ警告的なのも表示されてましたが、とりあえずエラーで止まることもなく終了。これでいいのかな?
ってことでバージョン確認。11.1になっていました。

$ cat /etc/debian_version 
11.1

で、InkscapeってLinux版あったのですね。
入れてみたところ1.0.2が動作しました。
とりあえず成功かな。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?