「インストール - VSCodium」の版間の差分
ナビゲーションに移動
検索に移動
72行目: | 72行目: | ||
__FORCETOC__ | __FORCETOC__ | ||
[[カテゴリ: | [[カテゴリ:RHEL]][[カテゴリ:SUSE]] |
2023年4月13日 (木) 21:05時点における版
概要
MicrosoftのVSCodeはオープンソースであるが、非FLOSSライセンスの下でライセンスされており、テレメトリー / トラッキングが含まれている。
VSCodiumでは、テレメトリ / トラッキングは無効になっている。
VSCodiumのインストール
パッケージ管理システムからインストール
まず、VSCodiumのリポジトリのGPGキーを追加する。
sudo rpm --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
次に、VSCodiumのリポジトリを追加する。
# CentOS printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg" |sudo tee -a /etc/yum.repos.d/vscodium.repo # SUSE printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg" |sudo tee -a /etc/zypp/repos.d/vscodium.repo
以下のコマンドを実行して、VSCodiumをインストールする。
# CentOS sudo dnf install codium SUSE sudo zypper install codium
手動でインストール
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