๋น์ด์๋ ๋๋ฐ์ด์ค ํน์ ํํฐ์ ์ด ์ต์ ํ๋๊ฐ ์กด์ฌํด์ผ ํ๋ค.
sudo cfdisk /dev/sdX
#!/bin/bash | |
cd ~/Desktop | |
# --------------------------- | |
## 0. Requirements | |
# --------------------------- | |
sudo apt-get update | |
sudo apt-get install -y build-essential git pkg-config cmake make \ | |
gcc curl wget unzip \ |
#!/bin/bash | |
# Fix: League of Legends 9.10 Crash after champ select | |
# Reddit: https://www.reddit.com/r/leagueoflinux/comments/bpjxg0/a_proofofconcept_hack_makes_post910_playable_again/ | |
# WineHQ: https://bugs.winehq.org/show_bug.cgi?id=47198 | |
# Assert no files *here* | |
PWD=`pwd` | |
if [ "$(ls -al | wc -l)" -gt "4" ] | |
then | |
echo "Please make current directory clean (no files)" |