본문 바로가기

컴퓨터 활용(한글, 오피스 등)/50_2.운영체제_리눅스232

리눅스_우분투_설치된 프로그램 확인 ubuntu -- 설치된 프로그램 확인-하기 환경 : ubuntu 18.04 LTS 서버, 네이버 클라우드 플랫폼 서버 참고 : https://itsfoss.com/list-installed-packages-ubuntu/ $ apt list --installed // 설치된 모든 프로그램 목록 보여줌. $ apt list --installed | grep 프로그램명 // 프로그램명에 와일드카드 사용 못함. $ apt list 프로그램명 --installed or $ apt list --installed 프로그램명 // 프로그램명에 와일드카드 사용 가능. ** openssh-server 프로그램 설치 여부 확인 하기 ** $ apt list --installed *ssh* 2022. 11. 21.
[작업중]리눅스_우분투_apache tomcat 웹서버 설치 우분투 22.04 설치 1. 시스템 업데이트 $ sudo apt update 2. java 설치 $sudo apt install openjdk-11-jdk $java -version 3. 아파치 톰캣 패키지 확인 $sudo apt-cache search tomcat 4. 아파치 톰캣 서버 설치 $sudo apt install tomcat9 tomcat9-admin 5. 아파치 톰캣 서버 포트 점검 $ss -ltn 6. 아파치 톰캣 서버를 위한 포트 열기 UFW 방화벽이 활성화된 경우 $sudo ufw allow from any to any port 8080 proto tcp 7. 아파치 톰캣 서버 테스트 http://127.0.0.1:8080 아파치 톰캣 웹 응용프로그램 매니저 사용 1. 톰캣 사용자 생.. 2022. 11. 17.
리눅스_우분투_하드웨어 사양 확인 출처: https://eungbean.github.io/2018/08/28/Ubuntu-system-check/ 서버모델확인 dmidecode | grep Name 시리얼번호 확인 dmidecode | grep Serial CPU cat /proc/cpuinfo dmesg | grep CPU 메모리 cat /proc/meminfo dmesg | grep memory 기타 하드웨어 장비확인 전체검색 : cat /etc/sysconfig/hwconf 상세검색 : cat /etc/sysconfig/hwconf | grep Mouse cat /etc/sysconfig/hwconf | grep Graphic cat /etc/sysconfig/hwconf | grep Net kernel 확인 cat /proc/sy.. 2022. 11. 16.
리눅스_Ubuntu Static IP configuration Ubuntu Static IP configuration 출처: https://linuxconfig.org/how-to-configure-static-ip-address-on-ubuntu-18-10-cosmic-cuttlefish-linux This tutorial will deal with Ubuntu static IP address configuration. It will provide the reader with a step by step procedure how to set static IP address on Ubuntu Server via netplan and Ubuntu Desktop using NetworkManager. Static IP address is recommended for se.. 2022. 11. 15.
리눅스_네트워크 정보 확인 ◆네트워크 설정 ·현재 설치된 네트워크 interface 설정 확인 : ifconfig - 네트워크 int 사용 해제 : down 옵션(ex.ifconfig eth0 down) - 네트워크 int 활성화 : up 옵션(ex.ifconfig eth0 up) - 네트워크 int 수동 설정 : ifconfig netmask - 네트워크 int 설정을 파일에 저장 : 우분투의 경우 /etc/network/interfaces에 설정 auto lo iface lo inet loopback iface eth0 inet static address x.x.x.x netmask x.x.x.x network x.x.x.x broadcast x.x.x.x gateway x.x.x.x ·게이트웨이 설정, 확인 : route -.. 2022. 11. 14.