Ubuntu

Install SSH

1. 개요 원격에서 서버로 접속 가능하도록 ssh 설치   2. Command sudo apt install openssh-server sudo service ssh restart vi /etc/rc.local /etc/init.d/ssh start   3. 포트 확인 netstat -antup | grep 22

Continue Reading
Ubuntu

[프로그램] notepadqq

1. 개요 윈도우의 notepad++를 우분투에서도 사용하고 싶다면 notepadqq를 사용하면 된다.   2. 설치 # repository 추가 → 업데이트 → notepadqq 설치 sudo add-apt-repository ppa:notepadqq-team/notepadqq sudo apt-get update sudo apt-get install notepadqq

Continue Reading
Ubuntu

NVIDIA 그래픽 드라이버 설치

1. 개요 우분투 설치시 기본적으로 그래픽 드라이버가 잡힌다. 그런데 외장 그래픽카드를 사용하는 경우 제대로된 드라이버가 잡히지 않아서 화면 멈춤 등의 오류가 발생한다. 따라서 해당 제조사에서 배포하는 그래픽 드라이버를 수동으로 설치해야한다.   2. Command nvidia.com에서 해당 OS, 그래픽 카드의 드라이버 다운로드 Ctrl + Alt + F2로 CUI 화면으로 이동 sudo service lightdm stop sudo apt-get –purge […]

Continue Reading
Ubuntu

Mail

1. 개요 우분투에서 메일 시스템을 사용하려면 mailutils를 설치해야한다.   2. 설치 sudo apt install mailutils postfix   3. 사용방법 전송 : mail -s “[Subject]” [E-mail address] < [text file] 인코딩 : –encoding=[CharSet] 제목 : -s, –subject to : -t, –to 확인 : mail -p, –print, –read   4. 설정 파일 변경 sudo vi /etc/postfix/main.cf sudo […]

Continue Reading
Ubuntu

시작 프로그램 등록 (sysv-rc-conf)

1. 개요 CentOS에서는 시작프로그램을 chkconfig로 control하고, Ubuntu에서는 sysv-rc-conf으로 control한다. sysv-rc-conf에서 관리를 하려면 먼저 service 등록을 해야한다. update-rc.d로 service 등록을 하면 sysv-rc-conf에 해당 서비스가 표시된다.   2. service 등록 vi /etc/init.d/[프로그램명] ; 보통 cp해서 사용한다. # 반드시 있어야하는 부분 : 없으면 등록 안됨 #!/bin/bash ### BEGIN INIT INFO # Provides: [프로그램명] # Required-Start: $network # 모름 […]

Continue Reading
Windows

[command] sc

Command Command Description sc start [service name] Start service sc stop [service name] Stop service sc config [service name] start=[auto/system/demand/disabled] service 시작 유형 설정 sc failure [service name] action=[/O] reset=O service 복구 옵션 O ; 동작하지 않음

Continue Reading
Windows

Remove Auto Share Folder on Windows

Intro Windows share default folder like C$, D$, IPC$, ADMIN$.But Security aspect that is very weak. Then remove share folder Command net share ; show share folder net share /delete [Share Folder Name] ; delete share folder(Not delete Original folder, Just Delete share link) reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters /v AutoShareWks /t REG_DWORD /d 0   Firewall […]

Continue Reading
Back To Top