〇JupyterLab Appの画面
wget https://github.com/jupyterlab/jupyterlab_app/releases/download/v3.1.12-2/JupyterLab-Setup-Fedora.rpm
sudo dnf -y install ./JupyterLab-Setup-Fedora.rpm
https://github.com/jupyterlab/jupyterlab_app
wget https://github.com/jupyterlab/jupyterlab_app/releases/download/v3.1.12-2/JupyterLab-Setup-Fedora.rpm
sudo dnf -y install ./JupyterLab-Setup-Fedora.rpm
sudo dnf -y install goldendict
sudo dnf -y install ncdu
sudo dnf install -y java-11-openjdk
wget https://github.com/Wisser/Jailer/releases/download/v10.5.3/jailer_10.5.3.zip
unzip jailer_10.5.3.zip
sudo mv jailer /opt
cat << EOF | sudo tee /usr/share/applications/jailer.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/jailer/jailerGUI.sh
Name=Jailer
Categories=Development;
EOF
cat << EOF | sudo tee /usr/share/applications/jailer_data_browser.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/jailer/jailerDataBrowser.sh
Name=Jailer Data Browser
Categories=Development;
EOF
sudo dnf -y install audacious
sudo dnf -y install fish
wget https://github.com/electerm/electerm/releases/download/1.13.4/electerm-1.13.4-linux-x86_64.rpm
sudo dnf -y install ./electerm-1.13.4-linux-x86_64.rpm
wget https://github.com/muesli/duf/releases/download/v0.6.2/duf_0.6.2_linux_amd64.rpm
sudo dnf -y install ./duf_0.6.2_linux_amd64.rpm
wget https://github.com/dalance/procs/releases/download/v0.11.9/procs-0.11.9-1.x86_64.rpm
sudo dnf -y install ./procs-0.11.9-1.x86_64.rpm
procs
sudo pip3 install Pillow
wget https://github.com/LingDong-/linedraw/archive/refs/heads/master.zip
unzip master.zip
cd linedraw-master/
python3 linedraw.py -i ./yellow_flower.jpg -o yellow_flower.svg
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
※以下の様な選択肢が表示されたら1を入力します1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
インストールしたシェルですぐにRustを使用するために、以下のコマンドを実行します。source $HOME/.cargo/env
cargo install du-dust
dust
error: linker `cc` not found
以下のコマンドを実行してgccをインストールしますsudo dnf -y install gcc
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
※以下の様な選択肢が表示されたら1を入力します1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
インストールしたシェルですぐにRustを使用するために、以下のコマンドを実行します。source $HOME/.cargo/env
sudo dnf -y install dnf-plugins-core epel-release
sudo dnf config-manager --set-enabled powertools
sudo dnf -y update
sudo dnf -y install cmake freetype-devel fontconfig-devel libxcb-devel xcb-util-devel libxkbcommon-devel
sudo yum -y group install "Development Tools"
cargo install alacritty
alacritty
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
※以下の様な選択肢が表示されたら1を入力します1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
インストールしたシェルですぐにRustを使用するために、以下のコマンドを実行します。source $HOME/.cargo/env
cargo install watchexec-cli
watchexec -- ls -la
watchexec -w ~/音楽 'ls -la ~/音楽'
error: linker `cc` not found
以下のコマンドを実行してgccをインストールします。sudo dnf -y install gcc
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
※以下の様な選択肢が表示されたら1を入力します1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
インストールしたシェルですぐにRustを使用するために、以下のコマンドを実行します。source $HOME/.cargo/env
cargo install bottom
btm
error: linker `cc` not found
以下のコマンドを実行してgccをインストールします。sudo dnf -y install gcc
sudo dnf -y install flatpak
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak -y install flathub org.freac.freac
flatpak run org.freac.freac
sudo dnf -y install flatpak
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak -y install org.soundconverter.SoundConverter
sudo dnf -y install epel-release
sudo dnf -y install snapd
sudo systemctl enable --now snapd.socket
sudo ln -s /var/lib/snapd/snap /snap
sudo snap install dbgate
※「error: too early for operation, device not yet seeded or device model not acknowledged」というエラーが出た場合は、しばらく待って再実行します。snap run dbgate
sudo mkdir -p /opt/librepcb
cd /opt/librepcb
sudo wget https://download.librepcb.org/releases/0.1.5/librepcb-0.1.5-linux-x86_64.AppImage
sudo chmod +x librepcb-0.1.5-linux-x86_64.AppImage
cat << EOF | sudo tee /usr/share/applications/librepcb.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/librepcb/librepcb-0.1.5-linux-x86_64.AppImage
Name=LibrePCB
EOF
sudo dnf -y install yum-utils
sudo rpm --import https://repo.clickhouse.tech/CLICKHOUSE-KEY.GPG
sudo yum-config-manager --add-repo https://repo.clickhouse.tech/rpm/clickhouse.repo
sudo dnf -y install clickhouse-server clickhouse-client
sudo systemctl start clickhouse-server
sudo systemctl enable clickhouse-server
clickhouse-client --password --query="CREATE TABLE test (test_date Date, test_id UInt16, test_message String) ENGINE = MergeTree(test_date, (test_id), 8192);"
cat << EOF > /tmp/test.csv
2021-03-01,100,hello world!
2021-03-02,200,テストデータ
EOF
cat /tmp/test.csv | clickhouse-client --password --query="INSERT INTO test FORMAT CSV"
clickhouse-client --password --query="SELECT * FROM test"
wget https://github.com/JannisX11/blockbench/releases/download/v3.7.4/Blockbench_3.7.4.rpm
sudo dnf -y install Blockbench_3.7.4.rpm