Linux/Ubuntu2011. 12. 11. 14:14
motd 라고 해야하나 issue 라고 해야하나
아무튼, CPU 보안관련 경고는 CPU에서 지원안하는데 계속 뜨고 -_-
그 아래에 CPU 사용 현황등이 출력된다.

login as: minimonk
minimonk@192.168.0.135's password:
Linux ubuntu64srv 2.6.32-33-server #70-Ubuntu SMP Thu Jul 7 22:28:30 UTC 2011 x86_64 GNU/Linux
Ubuntu 10.04.3 LTS

Welcome to the Ubuntu Server!
 * Documentation:  http://www.ubuntu.com/server/doc

Your CPU appears to be lacking expected security protections.
Please check your BIOS settings, or for more information, run:
  /usr/bin/check-bios-nx --verbose

  System information as of Sun Dec 11 14:12:38 KST 2011

  System load:  0.05               Processes:           130
  Usage of /:   0.7% of 129.32GB   Users logged in:     0
  Memory usage: 0%                 IP address for eth3: 192.168.0.135
  Swap usage:   0%

  Graph this data and manage this system at https://landscape.canonical.com/

Last login: Sat Dec  3 23:00:32 2011
minimonk@ubuntu64srv:~$ 



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

ubuntu-desktop 패키지 정보  (0) 2011.12.11
Ubuntu 시리얼 콘솔 활성화 시키기  (0) 2011.12.11
Ubuntu 릴리즈별 이름  (0) 2011.12.11
ifenslave 상황별 에러  (0) 2011.12.04
ubuntu server howto  (0) 2011.12.04
Posted by 구차니
Linux/Ubuntu2011. 12. 11. 12:53
Linux/Ubuntu2011. 12. 4. 23:23
modprobe bonding을 하지 않고 추가할 경우
$ sudo ifconfig bond0 192.168.12.1 netmsk 255.255.255.0
SIOCSIFADDR: No such device
bond0: ERROR while getting interface flags: No such device
SIOCSIFADDR: No such device
bond0: ERROR while getting interface flags: No such device
SIOCSIFADDR: No such device
bond0: ERROR while getting interface flags: No such device 

modprobe bonding을 하지 않았고 interface를 잘못입력한 경우
$ sudo ifenslave eth0 eth1
Master 'eth0': Error: handshake with driver failed. Aborting 

modprobe bonding을 하지 않았을 경우
$ sudo ifenslave bond0 eth0 eth1
Master 'bond0': Error: handshake with driver failed. Aborting  
 
interface 입력 오류시
$ sudo ifenslave bond0 eth0 eht1
Slave 'eht1': Error: get settings failed: No such device. Skipping
 

---
# modprobe bonding
# ifconfig bond0 192.168.0.1 netmask 255.255.0.0
# ifenslave bond0 eth0 eth1
[링크 : http://linux.die.net/man/8/ifenslave



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

ubuntu server 로그인 화면  (0) 2011.12.11
Ubuntu 릴리즈별 이름  (0) 2011.12.11
ubuntu server howto  (0) 2011.12.04
ubuntu server / desktop edition의 차이점  (0) 2011.12.03
ubuntu 64bit server 10.04 LTS 부팅이 안돼!  (0) 2011.12.03
Posted by 구차니
Linux/Ubuntu2011. 12. 4. 21:59
임베디드 우분투 이런거 없나?
aptitude로 관리해주는 임베디드 우분투 있으면 죽이겠는데 ㅋㅋㅋ

---
ajaxterm은 telnet이나 ssh를 웹에서 하게 해주는건데
ncurse 기반은 쓸수도 없고 방향키도 안되고 이래저래 많이 부족하지만
putty 같은거 받기 힘들경우에는 썩 나쁘진 않을듯
---

[링크 : https://help.ubuntu.com/community/Servers]
    [링크 : https://help.ubuntu.com/community/IptablesHowTo] firewall / masquerade
    [링크 : https://help.ubuntu.com/community/dhcp3-server]
    [링크 : https://help.ubuntu.com/community/BIND9ServerHowto] DNS Server
    [링크 : https://help.ubuntu.com/community/DynamicDNS] DDNS Client

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

Ubuntu 릴리즈별 이름  (0) 2011.12.11
ifenslave 상황별 에러  (0) 2011.12.04
ubuntu server / desktop edition의 차이점  (0) 2011.12.03
ubuntu 64bit server 10.04 LTS 부팅이 안돼!  (0) 2011.12.03
snmp - ubuntu  (0) 2011.11.21
Posted by 구차니
Linux2011. 12. 4. 21:43
iptables에서 ip masquerade(마스커레이드/가장,위장)를 통해
IP 공유기 처럼 만드는 걸 해보려니 은근 알아야 할게 많은듯 -_-

일단 커널에서 ipt_MASQUERADE를 지원해야 하고
지원할경우에는 단순히 modprobe를 통해 해당 모듈을 사용함으로서 사용이 가능해진다(고 한다)

$ sudo modprobe ipt_MASQUERADE

$ lsmod | grep -i ipt
ipt_MASQUERADE          1407  0 
nf_nat                 15560  1 ipt_MASQUERADE
x_tables               14175  1 ipt_MASQUERADE
nf_conntrack           60943  3 ipt_MASQUERADE,nf_nat,nf_conntrack_ipv4

$ sudo iptables -L -t filter
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination  
 
$ sudo iptables -L -t nat
Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination         

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination    

$ sudo iptables -L -t mangle
Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination         

Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination     

$ sudo iptables -L -t raw
Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination    

The tables are as follows:

filter:
This is the default table (if no -t option is passed). It contains the built-in chains INPUT (for packets destined to local sockets), FORWARD (for packets being routed through the box), and OUTPUT (for locally-generated packets).

nat:
This table is consulted when a packet that creates a new connection is encountered. It consists of three built-ins: PREROUTING (for altering packets as soon as they come in), OUTPUT (for altering locally-generated packets before routing), and POSTROUTING (for altering packets as they are about to go out).

mangle:
This table is used for specialized packet alteration. Until kernel 2.4.17 it had two built-in chains: PREROUTING (for altering incoming packets before routing) and OUTPUT (for altering locally-generated packets before routing). Since kernel 2.4.18, three other built-in chains are also supported: INPUT (for packets coming into the box itself), FORWARD (for altering packets being routed through the box), and POSTROUTING (for altering packets as they are about to go out).

raw:
This table is used mainly for configuring exemptions from connection tracking in combination with the NOTRACK target. It registers at the netfilter hooks with higher priority and is thus called before ip_conntrack, or any other IP tables. It provides the following built-in chains: PREROUTING (for packets arriving via any network interface) OUTPUT (for packets generated by local processes)
 
[링크 : http://linux.die.net/man/8/iptables

생각해보니 공유기를 다음의 패키지가 필요할듯
dhcp3-server (NAT 내부에서 쓸 용도)
dhcp3-client (외부에서 공인 아이피 받기 위한 용도)

추가적으로
bind9 (DNS 서버)

그리고 기능으로는
포트 포워딩
dhcp 대역 설정

 

'Linux' 카테고리의 다른 글

sudo와 selinux  (0) 2011.12.25
조이스틱 / 조이패드 on ubuntu  (2) 2011.12.23
리눅스를 라우터로 만들기  (0) 2011.12.02
SATA 와 IDE 하드 순서 인식 뒤바뀌는 문제  (0) 2011.11.23
vlan과 ip alias  (0) 2011.11.05
Posted by 구차니
Linux/Ubuntu2011. 12. 3. 23:23
서버는 서버용 커널이 들어간것 외에는
iso 안에 들어있는 패키지의 차이이기 때문에 설치하면 결국에는 그게 그거라고 하면 되려나..
아무튼 가장 큰 차이점은 X.org(X11)의 설치 유무인데
ubuntu-desktop 패키지를 설치하면 한방에 해결된다고 한다.

[링크 : https://help.ubuntu.com/community/ServerFaq#What.27s_the_difference_between_desktop_and_server.3F]
[링크 : http://jhanglim.springnote.com/pages/1641042.xhtml]
[링크 : http://packages.ubuntu.com/hardy/ubuntu-desktop]

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

ifenslave 상황별 에러  (0) 2011.12.04
ubuntu server howto  (0) 2011.12.04
ubuntu 64bit server 10.04 LTS 부팅이 안돼!  (0) 2011.12.03
snmp - ubuntu  (0) 2011.11.21
ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
Posted by 구차니
Linux/Ubuntu2011. 12. 3. 23:12
3ware 9500S      - /dev/sda
LSI 35c1030 id 0 - /dev/sdb 
LSI 35c1030 id 1 - /dev/sdc 

머.. 이렇게 잡히는 상황인데
아무생각없이 GRUB2 설치할때 넘겼다가 부팅이 안되서 다시 설치해보니
어....라? /dev/sda에 GRUB2를 설치하는 걸 발견 -_-

부랴부랴 back - back 해서 /dev/sdb에 설치하도록 하고 나서
리부팅하니 문제없이 부팅 -_-
아오 미네랄!!!! 

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

ubuntu server howto  (0) 2011.12.04
ubuntu server / desktop edition의 차이점  (0) 2011.12.03
snmp - ubuntu  (0) 2011.11.21
ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
vlan 1은 지원안함?  (0) 2011.11.06
Posted by 구차니
Linux2011. 12. 2. 21:03
iptables에서 masquerade만 지원하면 된다는데
부가적으로 dhcp server(공유기에 붙을 녀석을위해)
dhcp client(modem등에서 받기위해)
그리고 iptables 혹은 ipchain(방화벽)

이렇게만 깔면되는것 같은데 흐음...

[링크 : http://wiki.kldp.org/wiki.php/DocbookSgml/Masquerading-Simple-HOWTO]
[링크 : http://nenunena.tistory.com/87] << AP

'Linux' 카테고리의 다른 글

조이스틱 / 조이패드 on ubuntu  (2) 2011.12.23
iptables MASQUERADE (공유기 만들기?)  (0) 2011.12.04
SATA 와 IDE 하드 순서 인식 뒤바뀌는 문제  (0) 2011.11.23
vlan과 ip alias  (0) 2011.11.05
xz 압축프로그램  (2) 2011.10.28
Posted by 구차니
Linux2011. 11. 23. 10:52
IDE 80GB / sda
SATA 500GB / sdb 에 붙어야 하는 시스템인데
(아래는 정상부팅시 mount 상태)

어떤 이유인지 가끔 부팅시에
SATA 500GB / sda
IDE 80GB / sdb
로 붙고 sda는 그나마
파티션도 제대로 인식을 못하는 경우가 있다.



검색을 하다 포기했는데 또 같은일이 벌여져서 우씨! 하고 BIOS 옵션 뒤져봐도 안나오고 -_-
포기한 마음에 한글로 검색해봤는데 똭~!

흐음.. initrd를 공부해 봐야하나?

fedora 9의 커널 버전별로 인식되는 순서가 달라져서
각 커널의 /var/log/dmesg를 비교해보니
nforc4 메인보드라서 libata가 로드되면서 pata_amd와 sata_nv가 로드되는데 
문제가 일어나는 경우는 부팅시 sata_nv가 pata_amd보다 먼저 로드되더군요.
그래서 pata_amd가 sata_nv보다 먼저 로드되도록 /boot/initrd 이미지를 새로 만들었습니다.
mkinitrd --preload=pata_amd initrd-$(uname -r).img_new $(uname -r)
새로 만들어진 initrd 이미지로 부팅하니 문제가 해결됬네요.

[링크 : http://www.ubuntu.or.kr/viewtopic.php?p=1888



음.. 내 시스템에서는 initrd가 문제가 아니고.. SATA 컨트롤러 문제인가?
순서가 바뀌는건 아닌데 하드 인식을 제대로 못하는군...

2011/11/23 - [프로그램 사용/SMB(Samba)] - samba에 갑작스러운 "엑세스 거부"

'Linux' 카테고리의 다른 글

iptables MASQUERADE (공유기 만들기?)  (0) 2011.12.04
리눅스를 라우터로 만들기  (0) 2011.12.02
vlan과 ip alias  (0) 2011.11.05
xz 압축프로그램  (2) 2011.10.28
리눅스에서 파일 복구  (0) 2011.10.24
Posted by 구차니
Linux/Ubuntu2011. 11. 21. 17:05
패키지는 클라이언트용 snmp와 서버용 snmpd가 존재한다.
snmp - SNMP (Simple Network Management Protocol) applications
snmpd - SNMP (Simple Network Management Protocol) agents

$ snmpwalk -v 2c -c public 192.168.10.19
심심해서 복사기에 snmp가 지원한다고 하길래 해봤더니.. -_-
무려 1393라인에 걸쳐 나오는 센스

[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/article/SNMP_%B0%B3%BF%E4]
[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/SNMP/document/net_snmp5]
[링크 : http://www.it-slav.net/blogs/2009/02/05/install-and-configure-snmp-on-ubuntu/]

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

ubuntu server / desktop edition의 차이점  (0) 2011.12.03
ubuntu 64bit server 10.04 LTS 부팅이 안돼!  (0) 2011.12.03
ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
vlan 1은 지원안함?  (0) 2011.11.06
ip alias on ubuntu  (0) 2011.11.05
Posted by 구차니