miniforge의 새로운 가상환경 만들기 + jupyter Notebook 연결 conda create -n new python=3.11-n 새로운 가상환경 이름python 파이썬 버전 설정conda activate tavilypip install jupyter notebook생성한 가상환경으로 접속 후 jupyter 설치python -m ipykernel install --user --name tavily --display-name "tavily"생성한 가상환경을 커널에 연결하여 주피터 노트북에 보이게 설정하기 OS/Ubuntu 2024.06.11
miniforge 설치하기 Anaconda가 유료인 관계로 무료로 사용하기 위한 방법을 소개함.유료인 이유에 대한 자세한 설명은 여기에서 확인할 수 있다.curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"bash Miniforge3-$(uname)-$(uname -m).sh 각 OS 및 Architecture별로 상세 내용은 여기에서 확인할 수 있다.ubuntu라면 아래와 같다.https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh즉curl -L -O "https://gi.. OS/Ubuntu 2024.06.06
windows 서버 mount 방법 CIFS설치 apt-get install cifs-utils 마운트 명령어 sudo mount -t cifs -o username=$windows_user,password=$windows_user_password,dir_mode=0755,file_mode=0755 //WIN_SHARE_IP/$shared_name /mnt/winshare 접근 퍼미션을 변경할 때만 dir_mode=0755,file_mode=0755 를 추가한다.(없으면 기본은 777이다) CIFS 암호파일 만들기 /etc/ 에 아래와 같은 파일을 작성한다. username = $windows_user password = $windows_user_password domain = $windows_domain_name[옵션] 파일의 퍼미션을 .. OS/Ubuntu 2021.08.24
Hyper-V disk 용량 변경 parted resizepart 3 -0 pvresize /dev/sda3 lvextend -l +100%FREE /dev/mapper/ubuntu–-vg-ubuntu-–lv resize2fs /dev/mapper/ubuntu-—vg-ubuntu-—lv https://www.moh10ly.com/resizing-plesk-linux-ubuntu-server-on-hyper-v-with-dynamic-expansion/ OS/Ubuntu 2021.08.19
pptpd 설정하기 우분투 14.04 기준으로 설정 1. 설치apt-get install -y pptpd 2. local / remote ip 설정/etc/pptpd.conf 에서 다음처럼 ip를 설정한다.locapip 192.168.10.1 remoteip 192.168.10.100-200 3. DNS 설정/etc/ppp/pptpd-options 파일 편집하여 아래 내용 추가한다.ms-dns 8.8.8.8 ms-dns 8.8.4.4 4.사용자 추가/etc/ppp/chap-secrets 에 사용할 계정을 추가한다.# Secrets for authentication using CHAP # client server secret IP addresses userId1 * Password1 * 5. NAT 설정iptables -t .. OS/Ubuntu 2016.02.22
루트 권한 활성화 및 루트로 로그인하기 루트 권한 패스워드 설정sudo passwd root 명령어로 비밀번호 설정 ssh 루트로 로그인 활성화 하기아래 파일을 수정한다./etc/ssh/sshd_config에서 PermitRootLogin without-password 을 찾아 without-password -> yes로 변환.service ssh restart하기 OS/Ubuntu 2015.12.21
톰캣 자동 실행 /etc/init.d/tomcat란 이름으로 쉘파일을 생성vi /etc/init.d/tomcat 내용은 아래의 내용을 삽입#!/bin/sh # # Startup script for Tomcat, the Apache Servlet Engine # # chkconfig: - 85 15 # description: Start Tomcat # # processname: tomcat # # Source function library. export JAVA_HOME=/usr/lib/jvm/jdk1.6 export CATALINA_HOME=/usr/local/tomcat6 export PATH=$PATH:$JAVA_HOME/bin:$CATALINA_HOME/bin # See how we were called. case.. OS/Ubuntu 2013.10.03