'리눅스'에 해당되는 글 3건

  1. 2009.11.24 리눅스 c++ 컴파일 by 초상큼발랄 2
  2. 2009.10.28 명령어 by 초상큼발랄
  3. 2009.09.24 Samba 설치 by 초상큼발랄
C++에서는 C와 겹쳐지는 함수 이름들을 위해 #include에 새로운 형식을 사용한다.
#include <iostream> 처럼 .h를 생략하고 사용한다.
그리고, namespace라는 것을 이용합니다.
C에서 사용하던 헤더 화일들에는 c를 앞에 붙입니다.

예를 들면, #include <stdio.h> 의 경우에는
C++을 위해선 #include <cstdio>로 표기하는 것이 맞다.
물론, C와의 호환을 위해 <stdio.h>로도 사용이 가능합니다.

#include <iostream>

using namespace std;


hello.cpp 파일 컴파일시,,,,,, 

$ g++ -o hello hello.cpp

'Education > C++ programming' 카테고리의 다른 글

Compiler  (0) 2012.01.13
Variable  (1) 2012.01.13
Triangle & Rectangle program code  (0) 2009.11.24
피보나치 수열  (2) 2009.11.24
Posted by 초상큼발랄
l

명령어

Education/Linux Kernel 2009. 10. 28. 17:55

` 화면 clear
ctrl + L
$ clear

` Network
(UI mode)
$ system-config-network
(Text mode)
$ setup

` 색깔 바꾸기
$ vi .bashrc  =  $ vi ~/.bashrc
$ source ~/.bashrc (우선 현재창에 임시 저장)

`  root 계정
$ cd /etc/pam.d
$ ls
$ cp gdm gdm.orgin
$ vi gdm
" != " 라인 주석 처리

# auth required pam_succeed_if.so user != root quiet

$ vi /etc/pam.d/gdm-password 주석 처리 

# auth required pam_succeed_if.so user != root quiet

` Stand alon 독립적 수행 (Memory 상주 요청 후 바로 처리)
$ service sshd restart  =  $ /etc/rc.d/init.d/sshd restart

` 항상 메모리에 떠 있어야 함 ( 관리하는 demon들의 요청을 받아 들이기 위함)
$ /etc/xinetd.d/cvs
                      rsync
` 자동 설치
$ yum -y install tftp
RPM(Redhat package Manager) : yum 의 모든 필요한 package들을 의존관계가 있는 것을 설치 해 준다.
` 해상도 조절
$ system-config-display

`
$ vi /etc/selinux/config

` 방화벽 해제
$ iptable -F
$ service iptable stop ( restart ) 

'Education > Linux Kernel' 카테고리의 다른 글

커널 소스 트리  (0) 2009.11.18
root passwd  (0) 2009.10.28
Samba 설치  (0) 2009.09.24
Fedora11 ( linux-2.6.29.4 ) Compile 과정  (0) 2009.09.07
root 계정  (0) 2009.09.07
Posted by 초상큼발랄
l
Fedora 11

설치 확인

1. # rpm -qa | grep samba

설치

1. # yum install samba

2. # cd /etc/samba

2-1. # cp smb.conf smb.conf_bacup

2-2. # rm -rf smb.conf

2-3. # vi smb.conf


 
Samba Server 세팅 

1.  # adduser samba

2. # passwd samba

3. # smbpasswd -a samba

4. # /etc/init.d/smb restart

5. # mkdir /home/samba

6. # chmod 755 /home/samba

7. # chown samba.samba /home/samba
password: samba

8. # /etc/samba/smb.conf

[global]
 workgroup = WORKGROUP
 server string = Samba Server
 printcap name = /stc/printcap
 load printers = yes
 printing = lprng
 guest account = nobody
 log file = /var/log/samba/%m.log
 max log size = 0
 security = user
 encrypt password file = /etc/samba/smbpasswd
 username map = /etc/samba/smbusers
 include = /etc/samba/smb.conf.%m
 socket options = TCP_NODELAY SO_RCVBUF=8192SO_SNDBUF=8192

[home]
 comment = MySamba
 path = /home/samba
 browseable = yes
 read only = no
 writable = yes
 public = no
 create mask = 0750
 
9. #service smb restart

'Education > Linux Kernel' 카테고리의 다른 글

커널 소스 트리  (0) 2009.11.18
root passwd  (0) 2009.10.28
명령어  (0) 2009.10.28
Fedora11 ( linux-2.6.29.4 ) Compile 과정  (0) 2009.09.07
root 계정  (0) 2009.09.07
Posted by 초상큼발랄
l