web-dev-qa-db-ja.com

CentOS7にi3wmウィンドウマネージをインストールする方法

CentOSでi3wmをセットアップしたい。 rpmfind.netでrpmファイルi3をダウンロードしてみますが、2つのパッケージ(i3-doc <-> i3-wm)は相互依存しています。私はグーグルを検索してみましたが答えはありません:GnomeでCentOS 7でi3を使用する方法?

* 2017年2月3日更新*インストールに成功しました。 Pavel SalinとToebe Danielに感謝します。それでもまだ私のようにそれを行うことはできません。遭遇した場合、私は他の多くの人に詳細な指示を求めています。まず、EPELリポジトリが必要です

rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm

DNFスタックリポジトリを追加する

cat <<EOF > /etc/yum.repos.d/dnf-stack-el7.repo
[dnf-stack-el7]
name=Copr repo for dnf-stack-el7 owned by @rpm-software-management
baseurl=https://copr-be.cloud.fedoraproject.org/results/@rpm-software-management/dnf-stack-el7/epel-7-\$basearch/
skip_if_unavailable=True
gpgcheck=1
gpgkey=https://copr-be.cloud.fedoraproject.org/results/@rpm-software-management/dnf-stack-el7/pubkey.gpg
enabled=1
enabled_metadata=1
EOF

次に、次のコマンドをインストールします

1) yum install -y dnf dnf-plugins-core
2) dnf copr enable admiralnemo/i3wm-el7 

そして今、ガイドに従って admiralnemo

3
ANHNNP

DnfリポジトリのURLが変更されました。以下のスニペットを使用してください。

cat <<EOF > /etc/yum.repos.d/dnf-stack-el7.repo
[dnf-stack-el7]
name=Copr repo for dnf-stack-el7 owned by @rpm-software-management
baseurl=https://copr-be.cloud.fedoraproject.org/results/@rpm-software-management/dnf-centos/epel-7-x86_64/
skip_if_unavailable=True
gpgcheck=1
gpgkey=https://copr-be.cloud.fedoraproject.org/results/@rpm-software-management/dnf-centos/pubkey.gpg
enabled=1
enabled_metadata=1
EOF
2
BTR Naidu

coprリポジトリを使用できます: https://copr.fedorainfracloud.org/coprs/admiralnemo/i3wm-el7/

Coprリポジトリを使用するには、以下を参照してください https://fedorahosted.org/copr/wiki/HowToEnableRepo

Centosなので、今でもFedora/RedHatにある新しいyumの代わりにdnfを使用していると思います... yumの手順を使用してください...

0
Daniel Toebe

私はまた、CentOSを始めたばかりで、その新しいリポジトリとパッケージ管理システムで、同じ問題があります。 i3wmに関するページには、リポジトリを「有効にする」方法が記載されていますが、最初に何でも追加する必要があります(dnf、dnf-plugins-coreがインストールされていると想定)。

1) Sudo yum install -y dnf dnf-plugins-core
2) Sudo dnf config-manager --add-repo https://copr.fedorainfracloud.org/coprs/admiralnemo/i3wm-el7/repo/epel-7/admiralnemo-i3wm-el7-epel-7.repo

その後、すべてがスムーズに進み、すべてのadmiralnemo/i3wm-el7をインストールできるようになります。

方法-DNFリポジトリの追加、有効化、無効化 https://docs.fedoraproject.org/en-US/Fedora/22/html/System_Administrators_Guide/sec-Managing_DNF_Repositories.html

0
Pavel Salin

https://www.reddit.com/r/i3wm/comments/94vknq/install_i3_from_centos_minimal_iso/ および https://copr.fedorainfracloud.org/coprs/admiralnemo/ i3wm-el7 / これは私がインストールした方法ですi3ウィンドウマネージャーCentOS 7.6.181

1。次のコマンドを発行します。

$ yum install -y epel-release
$ yum clean all && yum update -y && yum upgrade -y
$ yum install -y xorg-x11-server-Xorg xorg-x11-drv-vmware xorg-x11-drv-vmmouse xorg-x11-drv-evdev mesa-dri-drivers xorg-x11-xinit-session xterm
$ yum install -y dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts i3 i3status lightdm
$ systemctl set-default graphical.target
$ systemctl isolate graphical.target

2。右上からiを選択し、サーバーにログインします。

enter image description here

初めてログインするときは、設定しますi(デフォルトの設定でよければEnterキーを2回押します)、

enter image description here

enter image description here

それで全部です。楽しい!

0
Tanveer