インストール - VSCodium

提供:MochiuWiki : SUSE, EC, PCB
2023年12月1日 (金) 05:39時点におけるWiki (トーク | 投稿記録)による版 (→‎VSCodiumのインストール)
ナビゲーションに移動 検索に移動

概要

MicrosoftのVSCodeはオープンソースであるが、非FLOSSライセンスの下でライセンスされており、テレメトリー / トラッキングが含まれている。
VSCodiumでは、テレメトリ / トラッキングは無効になっている。


VSCodiumのインストール

パッケージ管理システムからインストール

まず、VSCodiumのリポジトリのGPGキーを追加する。

# RHEL / SUSE
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg

# Mobian
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
     | gpg --dearmor \
     | sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg


次に、VSCodiumのリポジトリを追加する。

# RHEL
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h" | sudo tee -a /etc/yum.repos.d/vscodium.repo

# SUSE
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h" | sudo tee -a /etc/zypp/repos.d/vscodium.repo

# Mobian
echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main' \
     | sudo tee /etc/apt/sources.list.d/vscodium.list


VSCodiumをインストールする。

# RHEL
sudo dnf update
sudo dnf install codium

# SUSE
sudo zypper refresh
sudo zypper install codium 

# Mobian
sudo apt update
sudo apt install codium

# Manjaro ARM
# VSCodiumは、AUR (Arch User Repository) にあり、AUR Helperでインストールすることができる
AUR :
sudo aura -A vscodium-bin

Yay :
sudo yay -S vscodium-bin


Flatpakからインストール

非公式ではあるが、VSCodiumはFlatpakアプリケーションとして利用可能である。 LinuxディストリビューションがFlatpakをサポートしており、Flathubレポを有効化していれば、VSCodiumをインストールできる。

flatpak install flathub com.vscodium.codium


または、Flathubの公式Webサイトにあるflatpakrefファイルを開く。
gnome-software-plugin-flatpakパッケージがインストールされている場合、GNOME Softwareからインストールすることができる。

ただし、Flathubのセットアップ手順で推奨されている。

手動でインストール

VS CodiumのGithubにアクセスする。

VSCodium-<バージョン>-x86_64.AppImageファイルをダウンロード、または、VSCodium-linux-x64-<バージョン>.tar.gzファイルをダウンロードして解凍する。
ダウンロードまたは解凍したディレクトリを、任意の場所に配置する。

VS Codiumのデスクトップエントリファイルを作成する。

vi ~/.local/share/applications/VSCodium.desktop


# ~/.local/share/applications/VSCodium.desktopファイル

[Desktop Entry]
Type=Application
Name=VS Codium
GenericName=Text Editor
Comment=Code Editing. Redefined.
Exec=/<VS Codiumのインストールディレクトリ>/bin/codium --unity-launch %F
Icon=/<VS Codiumのインストールディレクトリ>/code.png
Categories=Development;IDE;
MimeType=text/plain;inode/directory;application/x-code-workspace;
Actions=new-empty-window;
Keywords=vscodeium;
StartupNotify=false
StartupWMClass=Codium

[Desktop Action new-empty-window]
Name=New Empty Window
Exec=/<VS Codiumのインストールディレクトリ>/bin/codium --new-window %F
Icon=/<VS Codiumのインストールディレクトリ>/code.png


vi ~/.local/share/applications/VSCodium-url-handler.desktop


# ~/.local/share/applications/VSCodium-url-handler.desktopファイル

[Desktop Entry]
Type=Application
Name=VS Codium - URL Handler
GenericName=Text Editor
Comment=Code Editing. Redefined.
Exec=/<VS Codiumのインストールディレクトリ>/bin/codium --open-url %U
Icon=/<VS Codiumのインストールディレクトリ>/code.png
Categories=Development;IDE;
MimeType=x-scheme-handler/vscode;x-scheme-handler/vscodium;
Keywords=vscodium;
NoDisplay=true
StartupNotify=true