OS/Linux2014. 10. 10. 16:58

SMB 가 설치되어 있어야 합니다.

SMB://IP/


'OS > Linux' 카테고리의 다른 글

Qmailtoaster 설치 centos6.5  (0) 2015.07.28
Centos 언어 설정  (0) 2014.11.27
[Centos] IP 변경  (0) 2014.05.13
[Centos] DNS 네임서버 설정  (0) 2014.02.20
[Centos] Subversion 설치 및 Apache 연동  (0) 2014.02.12
Posted by idwook
DB/Mysql2014. 6. 2. 10:12

/etc/vi my.cnf

[mysql]

default-character-set = utf8

[client]

default-character-set = utf8

[mysqld]

character-set-client-handshake=FALSE

init_connect="SET collation_connection = utf8_general_ci"

init_connect="SET NAMES utf8"

character-set-server = utf8

collation-server = utf8_general_ci

[mysqldump]

default-character-set = utf8

 

'DB > Mysql' 카테고리의 다른 글

MYSQL 대소문자 구분  (0) 2015.07.01
MYSQL REPLICATION 동기화 설정  (0) 2014.11.20
[Mysql] mysqldump 사용법 백업& 복구  (0) 2014.02.11
[Mysql] 부정형 NOT IN 사용  (0) 2014.02.11
[Mysql] 사용자 추가 삭제 변경  (0) 2014.02.06
Posted by idwook
OS/Linux2014. 5. 13. 12:19


[root@localhost]# /etc/sysconfig/network-scripts

[root@localhost]# vi ifcfg-eth0


DEVICE="eth0"

BOOTPROTO="static"

IPADDR="192.168.1.10"

NETMASK="255.255.255.0"

NETWORK="192.168.1.0"

BROADCAST="192.168.1.255"

GATEWAY="192.168.1.1"

DNS1="168.126.63.1" or "8.8.8.8"

DNS2="168.126.63.2" or "8.8.4.4"


[root@localhost]# service network restart

[root@localhost]# ifconfig -a


DHCP 설정


DEVICE="eth0"

BOOTPROTO="dhcp"

HWADDR = "xx:xx:xx:xx:xx:xx:xx:xx"

NM_CONTROLLED="yes"

ONBOOT="yes"

TYPE="ethernet"

UUID="xxxxx-xxx-xxx-xxx-xxxxxx"



STATIC 설정


DEVICE="eth0"

BOOTPROTO="static"

IPADDR="192.168.0.2"

NETMASK="255.255.255.0"

NETWORK="192.168.0.0"

BROADCAST="192.168.0.255"

HWADDR = "E8:00.32:00:53:74"

GATEWAY="192.168.0.1"

DNS1="168.126.63.1"

DNS2="168.266.63.2"

IPV6INIT="yes"

IPV6_AUTOCONF="yes"

NM_CONTROLLED="yes"

ONBOOT="yes"

TYPE="ethernet"

UUID="xxxxx-xxx-xxx-xxx-xxxxxx"



Posted by idwook