개발/linux(18)
-
CentOS7 sshd 포트변경
보안강화로 설치된 리눅스에서는 /etc/ssh/sshd_config 포트만 변경 해서는 데몬오류가 발생 한다 Redirecting to /bin/systemctl restart sshd.serviceJob for sshd.service failed because the control process exited with error code. See "systemctl status sshd.service" and "journalctl -xe" for details.(위 메세지는 SSH 데몬 설정에서 22번 기본 포트를 변경하려고 할 시에 발생하는 메세지) yum install policycoreutils-python semanage port -a -t ssh_port_t -p tcp 22110 systemc..
2018.05.05 -
CentOS 7 ifconfig 명령어 없음
ip addr 또는 yum install net-tools 설치
2018.04.19 -
Red Star OS 3.0 Action – North Korean Communist Linux in OS X Style
Red Star OS — North Korean Linux-based operating system and developed by The Korea Computer Center (KCC). You can download ithere. Installation is easy, but exist some non-obvious points:You need to enter: name, username, password, repeat password, hint(my_pass for example).Select DHCPv4.After installation we can see the Linux in Apple Style: Default browser — Naenara is a reworked Firefox. Red ..
2017.04.17 -
bzip 압축 관리
현재 디렉토리의 모든 txt 확장자의 파일들이 test.tar.bz2 라는 하나의 파일로 묶어지고 또한 압축tar -cjvf test.tar.bz2 *.txt tar.bz2 파일 압축 풀기tar -xvf test.tar.bz2 tar.bz2의 압축 내용 보기tar -tvf test.tar.bz2
2017.01.29 -
리눅스 iptable 관리
iptables 관리 centos7 centos5service iptables startservice iptables stop 시작 프로그램에 등록chkconfig --listchkconfig iptables on
2017.01.12 -
MariaDB + apache + php
sql + apache + php shell> groupadd mysqlshell> useradd -g mysql mysqlshell> cd /usr/localshell> gunzip ln -s full-path-to-mysql-VERSION-OS mysqlshell> cd mysqlshell> chown -R mysql .shell> chgrp -R mysql .shell> scripts/mysql_install_db --user=mysqlshell> chown -R root .shell> chown -R mysql datashell> bin/mysqld_safe --user=mysql & ./bin/mysq..
2017.01.11