본문 바로가기

Linux

(59)
[ Linux ] PIP 설치 1. Python2 curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o /tmp/get-pip.py python2 /tmp/get-pip.py pip2 --version 2. Python3 curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py python3 /tmp/get-pip.py pip3 --version
[ Linux ] LAN DRIVER 설치 # CentOS8 최소설치 - 표준 - 개발용툴 설치 후 진행 # 네트워크 랜카드 정보 확인 lshw -C network # 확인 후 아래 사이트에서 Network Adapter Driver 다운로드 # https://downloadcenter.intel.com/download/15817/Intel-Network-Adapter-Driver-for-PCIe-Intel-Gigabit-Ethernet-Network-Connections-Under-Linux-?product=71307 # 아래 사이트에서 Lan Driver 다운로드 # https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabi..
[ Linux ] JUPYTER LAB 설치 curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh bash ~/Miniconda3-latest-Linux-x86_64.sh -b -p /app/dkit/anaconda3 ln -Tfs /app/dkit/anaconda3/bin/conda /usr/bin/conda source /app/dkit/anaconda3/etc/profile.d/conda.sh echo -e "y\n" | conda create -n jupyter python=3.9 conda activate jupyter pip install jupyterlab echo -e "y\n" | conda install -c conda-forge jupyter_..
[ Linux ] SDK 설치 mkdir -p /app/install/dkit/sdk /app/dkit/sdk wget --no-check-certificate https://dl.google.com/android/repository/commandlinetools-linux-9477386_latest.zip -O /app/install/dkit/sdk/commandlinetools.zip unzip -d /app/dkit/sdk /app/install/dkit/sdk/commandlinetools.zip ln -Tfs /app/dkit/jdk/15.0.2 /app/dkit/jdk/release /app/dkit/sdk/cmdline-tools/bin/sdkmanager --sdk_root=/app/dkit/sdk "platform-t..
[ Linux ] GRADLE 설치 mkdir -p /app/dkit/gradle/7.2 wget --no-check-certificate https://services.gradle.org/distributions/gradle-7.2-bin.zip -O /app/install/gradle-7.2-bin.zip dest=/app/dkit/gradle/7.2 zip=/app/install/gradle-7.2-bin.zip unzip -d "$dest" "$zip" && f=("$dest"/*) && mv "$dest"/*/* "$dest" && rmdir "${f[@]}" sed -i "s/^export\s*JAVA_HOME=.*$//g" /etc/profile # JAVA 설치 폴더 지정 echo "export JAVA_HOME=/app/d..
[ Linux ] TIBERO 설치 yum -y install libaio mkdir -p /app/install/dbms /app/dbms/tibero tar xvfz /app/install/dbms/tibero6-bin-FS07_CS_2005-linux64_3.10-189892-opt.tar.gz -C /app/dbms/tibero --strip-components=1 mv /app/install/dbms/license.xml /app/dbms/tibero/license/license.xml cat /root/.bashrc export TB_HOME=/app/dbms/tibero export TB_SID=MSSSRCH export LD_LIBRARY_PATH=$TB_HOME/lib:$TB_HOME/client/lib export PAT..
[ Linux ] GIT 설치 yum -y install tcl gettext mkdir -p /app/dkit/git/2.39.1 /app/temp/git/ /app/util/zlib wget --no-check-certificate http://www.zlib.net/fossils/zlib-1.2.13.tar.gz -O /app/install/zlib-1.2.13.tar.gz wget --no-check-certificate https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.39.1.tar.gz -O /app/install/git-2.39.1.tar.gz mkdir -p /app/temp/zlib tar xvfz /app/install/zlib-1.2.13.tar.gz -C ..
[ Linux ] CURL 설치 mkdir -p /app/util/curl /app/temp/curl wget --no-check-certificate https://curl.se/download/curl-7.87.0.tar.gz -O /app/install/curl-7.87.0.tar.gz tar xvfz /app/install/curl-7.87.0.tar.gz -C /app/temp/curl --strip-components=1 cd /app/temp/curl/ /app/temp/curl/configure --with-openssl=/app/util/openssl --prefix=/app/util/curl make && make install ln -Tfs /app/util/curl/bin/curl /usr/bin/curl ln -..