「インストール - VSCodium」の版間の差分
ナビゲーションに移動
検索に移動
5行目: | 5行目: | ||
== VSCodiumのインストール == | == VSCodiumのインストール == | ||
==== パッケージ管理システムからインストール ==== | |||
まず、VSCodiumのリポジトリのGPGキーを追加する。 | まず、VSCodiumのリポジトリのGPGキーを追加する。 | ||
sudo rpm --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | sudo rpm --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | ||
22行目: | 23行目: | ||
sudo zypper install codium | sudo zypper install codium | ||
<br> | <br> | ||
==== 手動でインストール ==== | |||
[https://github.com/VSCodium/vscodium/releases VS CodiumのGithub]にアクセスする。<br> | |||
<br> | <br> | ||
VSCodium-<バージョン>-x86_64.AppImageファイルをダウンロード、または、VSCodium-linux-x64-<バージョン>.tar.gzファイルをダウンロードして解凍する。<br> | |||
ダウンロードまたは解凍したディレクトリを、任意の場所に配置する。<br> | |||
<br> | |||
VS Codiumのデスクトップエントリファイルを作成する。 | |||
vi ~/.local/share/applications/VSCodium.desktop | |||
<br> | |||
# ~/.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 | |||
<br> | |||
vi ~/.local/share/applications/VSCodium-url-handler.desktop | |||
<br> | |||
# ~/.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 | |||
<br><br> | <br><br> | ||
__FORCETOC__ | __FORCETOC__ | ||
[[カテゴリ:CentOS]][[カテゴリ:SUSE]] | [[カテゴリ:CentOS]][[カテゴリ:SUSE]] |
2022年1月2日 (日) 16:16時点における版
概要
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