-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_multiple.sh
67 lines (56 loc) · 2.22 KB
/
install_multiple.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
RED='\033[0;31m'
NC='\033[0m'
echo -e "${GREEN}>>> Sistem güncelleniyor...${NC}"
sudo apt update && sudo apt upgrade -y
if [ $? -ne 0 ]; then
echo -e "${RED}Sistem güncellenemedi. Lütfen manuel olarak kontrol edin.${NC}"
exit 1
fi
echo -e "${GREEN}>>> Sistem güncellemesi tamamlandı.${NC}"
echo -e "${GREEN}>>> Multiple Node istemcisi indiriliyor...${NC}"
ARCH=$(uname -m)
if [[ "$ARCH" == "x86_64" ]]; then
CLIENT_URL="https://cdn.app.multiple.cc/client/linux/x64/multipleforlinux.tar"
elif [[ "$ARCH" == "aarch64" ]]; then
CLIENT_URL="https://cdn.app.multiple.cc/client/linux/arm64/multipleforlinux.tar"
else
echo -e "${RED}Desteklenmeyen sistem mimarisi: $ARCH${NC}"
exit 1
fi
wget $CLIENT_URL -O multipleforlinux.tar
if [ $? -ne 0 ]; then
echo -e "${RED}Multiple Node istemcisi indirilemedi.${NC}"
exit 1
fi
echo -e "${GREEN}>>> Multiple Node arşivi çıkarılıyor...${NC}"
tar -xvf multipleforlinux.tar
cd multipleforlinux || { echo -e "${RED}multipleforlinux dizinine girilemedi.${NC}"; exit 1; }
echo -e "${GREEN}>>> Gerekli izinler veriliyor...${NC}"
chmod +x ./multiple-cli ./multiple-node
if [ $? -ne 0 ]; then
echo -e "${RED}İzinler ayarlanırken bir hata oluştu.${NC}"
exit 1
fi
echo -e "${GREEN}>>> PATH değişkenine ekleniyor...${NC}"
export PATH=$PATH:$(pwd)
echo "export PATH=\$PATH:$(pwd)" >> ~/.bashrc
echo -e "${GREEN}>>> Multiple Node başlatılıyor...${NC}"
nohup ./multiple-node > output.log 2>&1 &
if [ $? -ne 0 ]; then
echo -e "${RED}Multiple Node başlatılamadı.${NC}"
exit 1
fi
read -p "Account ID girin: " IDENTIFIER
read -p "PIN girin (örnek: 123456): " PIN
echo -e "${GREEN}>>> Multiple Node CLI bağlantısı yapılıyor...${NC}"
./multiple-cli bind --bandwidth-download 100 --identifier $IDENTIFIER --pin $PIN --storage 200 --bandwidth-upload 100
if [ $? -ne 0 ]; then
echo -e "${RED}Multiple Node bağlanamadı. Lütfen girdilerinizi kontrol edin.${NC}"
exit 1
fi
echo -e "${GREEN}>>> Multiple Node kurulumu tamamlandı!${NC}"
echo -e "${YELLOW}Node durumunu kontrol etmek için: ./multipleforlinux/multiple-cli status${NC}"
echo -e "${YELLOW}Log dosyasını incelemek için: cat multipleforlinux/output.log${NC}"