목록ardor../linux. (4)
Sa nagbi imuru C
Debian 계열에서는 별문제가 없는데, Redhat 계열에서 Putty를 사용하다보면 ansi blue color의 색깔이 너무 어두워 식별이 어렵다. 이럴경우 HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\ 에서 색상을 바꾸어 주면 되는데 Redhat에 해당하는 session의 Colour14를 0,0,187 에서 70,110,230 으로 바꾸어주면 잘 보인다.
네트웍 설정 - dhcp 설정 중 취소 - 수동설정 ( ip주소, netmask, gateway 알고 있어야 함) - 자동으로 설정되었을 경우 고정아이피 지정하려면 dhcp3 패키지 삭제해야 함 ssh 설치 apt-get install openssh-server root 로긴 금지 /etc/ssh/sshd_config 파일에서 PermitRootLogin Yes # yes를 no로 바꿔줌 ftp 설치 #atp-get install wu-ftpd 시간설정 (UTC 사용안함) )# date -s '2007-08-31 06:30:30' # hwclock --systohc // 새로 바뀐 시간을 H/W clock 에 설정 locale 추가(euc-kr) #/etc/locale.gen 파일에 다음을 추가 ko_K..
find 명령어를 이용해 서브디렉토리까지 한번에 euc-kr 에서 utf-8로 변환해 주는 스크립트 #!/bin/bash FROM=euc-kr TO=utf-8 ICONV="iconv -f $FROM -t $TO" # Convert ; *.php 대신 "*"를 주면 모든 확장자에 대해 변환 시도 find dir/ -type f -name "*.php" | while read fn; do cp ${fn} ${fn}.bak $ICONV ${fn} rm ${fn}.bak done관련글 : Mysql euc-kr 에서 utf-8로 변환
1. 데이터 백업 소스백업 #tar cvzpf [백업파일이름.tar.gz ] [백업할 디렉토리] euc-kr로 된 db를 dump 받는다. # mysqldump -u[id] -p [db] > dump.sql 2. 데이터 전송 3. 새로운 db 작성 후 사용자 권한 허가 $ mysql -u adminusername -p Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 5340 to server version: 3.23.54 Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer. mysql> CREATE DATABASE data..