은은하게 노란색이 나와서 괜찮은듯한 느낌
갈수록 사진을 못찍는것 같은건.. 기분탓?
'개소리 왈왈 > 사진과 수다' 카테고리의 다른 글
길고양이 두마리 (4) | 2010.01.03 |
---|---|
달 (10) | 2009.12.31 |
겨울별자리 - 오리온 (2) | 2009.12.18 |
디카가 생겼습니다! (2) | 2009.12.14 |
소니 HX-1 (Sony HX1) 사용기 (0) | 2009.12.13 |
길고양이 두마리 (4) | 2010.01.03 |
---|---|
달 (10) | 2009.12.31 |
겨울별자리 - 오리온 (2) | 2009.12.18 |
디카가 생겼습니다! (2) | 2009.12.14 |
소니 HX-1 (Sony HX1) 사용기 (0) | 2009.12.13 |
freeciv - 문명 오픈소스 (6) | 2010.01.20 |
---|---|
Cooliris (piclens) (6) | 2010.01.05 |
BeeGIF - 대박 GIF 프로그램! (2) | 2009.12.13 |
rtsp를 지원하는 스트리밍 서버 - live555 (0) | 2009.11.13 |
Free 3D 프로그램 (0) | 2009.10.01 |
[황당해결] Ubuntu 9.10 + Nvidia 에서 640x480 해상도 이상으로 설정하기 (0) | 2010.01.15 |
---|---|
콘솔 터미널 탭사용하기 (0) | 2010.01.13 |
TC1100에 우분투 설치 관련 문서 (6) | 2009.12.10 |
Xournal + CellWriter (4) | 2009.12.10 |
Ubuntu 9.10 에서 프로그램 설치가 안될경우 (0) | 2009.12.09 |
HP EliteBook 8730 mobile workstation (0) | 2010.02.03 |
---|---|
헉 하드가! (2) | 2009.12.30 |
TC-1100 타블렛 노트북 (2) | 2009.12.11 |
포맷은 주말에.... OTL (0) | 2009.07.02 |
간만에 지름신 - 하드를 질렀습니다!! (14) | 2009.07.01 |
이상한 나라의 앨리스 (0) | 2010.03.13 |
---|---|
의형제 (1) | 2010.02.06 |
아바타(2009) - I see you (7) | 2009.12.20 |
크리스마스 캐롤 IMAX 3D (2009) (8) | 2009.11.28 |
우리 밥팅이 생일 축하해! (0) | 2009.11.27 |
티스토리 초대장과 구글 애널리틱스 (4) | 2009.12.29 |
---|---|
NATE Air 재난문자 해제하기 (8) | 2009.12.28 |
대세는 고양이? (13) | 2009.12.22 |
신개념 피싱 사이트? (4) | 2009.12.22 |
리눅스 마스터 2급 합격! (9) | 2009.12.18 |
###################################################################### # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) # # A "#" character in the very first column makes the rest of the line # be ignored. Blank lines are ignored. Lines may be indented freely. # A "\" character at the very end of the line indicates the next line # should be treated as a continuation of the current one. # # The "pre-up", "up", "down" and "post-down" options are valid for all # interfaces, and may be specified multiple times. All other options # may only be specified once. # # See the interfaces(5) manpage for information on what options are # available. ###################################################################### # We always want the loopback interface. # # auto lo # iface lo inet loopback # An example ethernet card setup: (broadcast and gateway are optional) # # auto eth0 # iface eth0 inet static # address 192.168.0.42 # network 192.168.0.0 # netmask 255.255.255.0 # broadcast 192.168.0.255 # gateway 192.168.0.1 # A more complicated ethernet setup, with a less common netmask, and a downright # weird broadcast address: (the "up" lines are executed verbatim when the # interface is brought up, the "down" lines when it's brought down) # # auto eth0 # iface eth0 inet static # address 192.168.1.42 # network 192.168.1.0 # netmask 255.255.255.128 # broadcast 192.168.1.0 # up route add -net 192.168.1.128 netmask 255.255.255.128 gw 192.168.1.2 # up route add default gw 192.168.1.200 # down route del default gw 192.168.1.200 # down route del -net 192.168.1.128 netmask 255.255.255.128 gw 192.168.1.2 # A more complicated ethernet setup with a single ethernet card with # two interfaces. # Note: This happens to work since ifconfig handles it that way, not because # ifup/down handles the ':' any differently. # Warning: There is a known bug if you do this, since the state will not # be properly defined if you try to 'ifdown eth0' when both interfaces # are up. The ifconfig program will not remove eth0 but it will be # removed from the interfaces state so you will see it up until you execute: # 'ifdown eth0:1 ; ifup eth0; ifdown eth0' # BTW, this is "bug" #193679 (it's not really a bug, it's more of a # limitation) # # auto eth0 eth0:1 # iface eth0 inet static # address 192.168.0.100 # network 192.168.0.0 # netmask 255.255.255.0 # broadcast 192.168.0.255 # gateway 192.168.0.1 # iface eth0:1 inet static # address 192.168.0.200 # network 192.168.0.0 # netmask 255.255.255.0 # "pre-up" and "post-down" commands are also available. In addition, the # exit status of these commands are checked, and if any fail, configuration # (or deconfiguration) is aborted. So: # # auto eth0 # iface eth0 inet dhcp # pre-up [ -f /etc/network/local-network-ok ] # # will allow you to only have eth0 brought up when the file # /etc/network/local-network-ok exists. # Two ethernet interfaces, one connected to a trusted LAN, the other to # the untrusted Internet. If their MAC addresses get swapped (because an # updated kernel uses a different order when probing for network cards, # say), then they don't get brought up at all. # # auto eth0 eth1 # iface eth0 inet static # address 192.168.42.1 # netmask 255.255.255.0 # pre-up /path/to/check-mac-address.sh eth0 11:22:33:44:55:66 # pre-up /usr/local/sbin/enable-masq # iface eth1 inet dhcp # pre-up /path/to/check-mac-address.sh eth1 AA:BB:CC:DD:EE:FF # pre-up /usr/local/sbin/firewall # Two ethernet interfaces, one connected to a trusted LAN, the other to # the untrusted Internet, identified by MAC address rather than interface # name: # # auto eth0 eth1 # mapping eth0 eth1 # script /path/to/get-mac-address.sh # map 11:22:33:44:55:66 lan # map AA:BB:CC:DD:EE:FF internet # iface lan inet static # address 192.168.42.1 # netmask 255.255.255.0 # pre-up /usr/local/sbin/enable-masq $IFACE # iface internet inet dhcp # pre-up /usr/local/sbin/firewall $IFACE # A PCMCIA interface for a laptop that is used in different locations: # (note the lack of an "auto" line for any of these) # # mapping eth0 # script /path/to/pcmcia-compat.sh # map home,*,*,* home # map work,*,*,00:11:22:33:44:55 work-wireless # map work,*,*,01:12:23:34:45:50 work-static # # iface home inet dhcp # iface work-wireless bootp # iface work-static static # address 10.15.43.23 # netmask 255.255.255.0 # gateway 10.15.43.1 # # Note, this won't work unless you specifically change the file # /etc/pcmcia/network to look more like: # # if [ -r ./shared ] ; then . ./shared ; else . /etc/pcmcia/shared ; fi # get_info $DEVICE # case "$ACTION" in # 'start') # /sbin/ifup $DEVICE # ;; # 'stop') # /sbin/ifdown $DEVICE # ;; # esac # exit 0 # An alternate way of doing the same thing: (in this case identifying # where the laptop is is done by configuring the interface as various # options, and seeing if a computer that is known to be on each particular # network will respond to pings. The various numbers here need to be chosen # with a great deal of care.) # # mapping eth0 # script /path/to/ping-places.sh # map 192.168.42.254/24 192.168.42.1 home # map 10.15.43.254/24 10.15.43.1 work-wireless # map 10.15.43.23/24 10.15.43.1 work-static # # iface home inet dhcp # iface work-wireless bootp # iface work-static static # address 10.15.43.23 # netmask 255.255.255.0 # gateway 10.15.43.1 # # Note that the ping-places script requires the iproute package installed, # and the same changes to /etc/pcmcia/network are required for this as for # the previous example. # Set up an interface to read all the traffic on the network. This # configuration can be useful to setup Network Intrusion Detection # sensors in 'stealth'-type configuration. This prevents the NIDS # system to be a direct target in a hostile network since they have # no IP address on the network. Notice, however, that there have been # known bugs over time in sensors part of NIDS (for example see # DSA-297 related to Snort) and remote buffer overflows might even be # triggered by network packet processing. # # auto eth0 # iface eth0 inet manual # up ifconfig $IFACE 0.0.0.0 up # up ip link set $IFACE promisc on # down ip link set $IFACE promisc off # down ifconfig $IFACE down # Set up an interface which will not be allocated an IP address by # ifupdown but will be configured through external programs. This # can be useful to setup interfaces configured through other programs, # like, for example, PPPOE scripts. # # auto eth0 # iface eth0 inet manual # up ifconfig $IFACE 0.0.0.0 up # up /usr/local/bin/myconfigscript # down ifconfig $IFACE down [링크 : http://www.cyberciti.biz/faq/setting-up-an-network-interfaces-file/] |
busybox ps는 BSD 스타일? (0) | 2010.01.12 |
---|---|
ifup / ifdown 을 통한 static <-> dhcp 변환 (0) | 2009.12.29 |
busybox udhcp interface 파일 주의사항 (0) | 2009.12.02 |
busybox - ash에서 alias 지원하지 않을경우 (0) | 2009.09.03 |
busybox ash 주의사항? (2) | 2009.08.06 |
Graphics Card Hierarchy Chart | ||
---|---|---|
GeForce | Radeon | Intel |
Discrete: HD 5970 | ||
Discrete: GTX 295 | Discrete: HD 4870 X2 | |
Discrete: HD 5870 | ||
Discrete: GTX 280, GTX 285 | Discrete: HD 4850 X2, HD 5850 | |
Discrete: 9800 GX2, GTX 260, GTX 275 | Discrete: HD 4870, HD 4890, HD 5770 | |
Discrete: 8800 Ultra, 9800 GTX, 9800 GTX+, GTS 250 |
Discrete: HD 3870 X2, HD 4850, HD 5750 | |
Discrete: 8800 GTX, 8800 GTS 512 MB Go (mobile): 280M | Discrete: HD 4770 | |
Discrete: 8800 GT 512 MB, 9800 GT Go (mobile): 260M (112) |
Discrete: HD 4830 | |
Discrete: 8800 GTS 640 MB, 9600 GT, GT 240 (GDDR5) | Discrete: HD 2900 XT, HD 3870 | |
Discrete: 8800 GS, 9600 GSO, GT 240 (DDR3) Go (mobile): 260M (96) |
Discrete: HD 3850 512 MB, HD 4670 Mobility: 3870 | |
Discrete: 8800 GT 256 MB, 8800 GTS 320 MB, GT 220 Go (mobile): 8800M |
Discrete: HD 2900 PRO, HD 3850 256 MB Mobility: 3850 |
|
Discrete: 7950 GX2 | Discrete: X1950 XTX, HD 4650 (DDR3) | |
Discrete: 7800 GTX 512, 7900 GTO, 7900 GTX | Discrete: X1900 XT, X1950 XT, X1900 XTX | |
Discrete: 7800 GTX, 7900 GT, 7950 GT | Discrete: X1800 XT, X1900 AIW, X1900 GT, X1950 PRO, HD 2900 GT | |
Discrete: 7800 GT, 7900 GS, 8600 GTS, 9500 GT (GDDR3) Go (mobile): 7950 GTX | Discrete: X1800 XL, X1950 GT, HD 4650 (DDR2) Mobility X1800 XT |
|
Discrete: 6800 Ultra, 7600 GT, 7800 GS, 8600 GT (GDDR3), 9500 GT (DDR2) Go (mobile): 7800 GTX, 7900 GTX |
Discrete: X800 XT (& PE), X850 XT (& PE), X1650 XT, X1800 GTO, HD 2600 XT, HD 3650 (DDR3), HD 3670, Mobility: X1900, 3670 |
|
Discrete: 6800 GT, 6800 GS (PCIe), 8600 GT (DDR2) Go (mobile): 7800, Go 7900 GS | Discrete: X800 XL, X800 GTO2/GTO16, HD 2600 PRO, HD 3650 (DDR2), Mobility: X800 XT, HD 2600 XT, 3650 |
|
Discrete: 6800 GS (AGP) Go (mobile): 6800 Ultra, 7600 GT, 8600M GT, 8700M GT |
Discrete: X800 GTO 256 MB, X800 PRO, X850 PRO, X1650 GT Mobility: HD 2600 |
|
Discrete: 6800, 7300 GT GDDR3, 7600 GS, 8600M GS Go (mobile): 6800, 7700 | Discrete: X800, X800 GTO 128 MB, X1600 XT, X1650 PRO Mobility: X1800 |
|
Discrete: 6600 GT, 6800LE, 6800 XT, 7300 GT (DDR2), 8500 GT, 9400 GT Go (mobile): 7600 (128-bit) | Discrete: 9800 XT, X700 PRO, X800 GT, X800 SE, X1300 XT, X1600 PRO, HD 2400 XT, HD 4350, HD 4550 Mobility: X800, 3470 Integrated: HD 3300 | |
Discrete: FX 5900, FX 5900 Ultra, FX 5950 Ultra, 6600 (128-bit) Go (mobile): 6800 (128-bit) Integrated: 9300, 9400 |
Discrete: 9700, 9700 PRO, 9800, 9800 PRO, X700, X1300 PRO, X1550, HD 2400 PRO Mobility: X1450, X1600, X1700, 2400 XT, X2500, 3450 Integrated: HD 3200, HD 4200 |
|
Discrete: FX 5800 Ultra, FX 5900 XT Go (mobile): 6600, Go 7600 (64-bit) | Discrete: 9500 PRO, 9600 XT, 9800 PRO (128-bit), X600 XT, X1050 (128-bit) Mobility: 9800, X700, X1350, X1400, X2300, HD 2400 |
|
Discrete: 4 Ti 4600, 4 Ti 4800, FX 5700 Ultra, 6200, 8300, 8400 G, G 210, G 310 | Discrete: 9600 PRO, 9800 LE, X600 PRO, HD 2300 Mobility: 9700 (128-bit), X600, X1300 Integrated: Xpress 1250 |
|
Discrete: 4 Ti4200, 4 Ti4400, 4 Ti4800 SE, FX 5600 Ultra, FX 5700, 6600 (64-bit), 7300 GS, 8400M GS, 9300M G, 9300M GS | Discrete: 9500, 9550, 9600, X300, X1050 (64-bit) Mobility: 9600 | |
Discrete: 3 Ti500, FX 5200 Ultra, FX 5600, FX 5700 LE, 6200 TC, 6600 LE, 7200 GS, 7300 LE Go (mobile): 5700, 8200M, 9200M GS, 9100 Integrated: 8200, 8300 | Discrete: 8500, 9100, 9000 PRO, 9600 LE, X300 SE, X1150 Mobility 9700 (64-bit) |
GMA X4500 |
Discrete: 3, 3 Ti200, FX 5200 (128-bit), FX 5500, Go (mobile): 5600, 6200, 6400, 7200, 7300, 7400 (64-bit) |
Discrete: 9000, 9200, 9250 Mobility: 9600 (64-bit), X300 |
|
Discrete: FX 5200 (64 bit) Go (mobile): 7200, 7400 (32-bit) Integrated: 6100, 6150 | Discrete: 9200 SE Integrated: Xpress 200M, Xpress 1000, Xpress 1150 |
GMA X3000, X3100, X3500 |
Discrete: 2 GTS, 4 MX 440, 2 Ultra, 2 Ti, 2 Ti 200 | Discrete: 7500 | GMA 3000, 3100 |
Discrete: 256, 2 MX 200, 4 MX 420, 2 MX 400 | Discrete: SDR, LE, DDR, 7000, 7200 | GMA 500, 900, 950 |
Discrete: Nvidia TNT | Discrete: Rage 128 | Intel 740 |
EDID - Extended display identification data (0) | 2010.01.14 |
---|---|
USB 연결방식(Physical Connection of USB) (0) | 2009.12.29 |
EVF - Electronic View Finder (2) | 2009.12.15 |
AMD AM socket/CPU에 관한 짧막한 정리 (0) | 2009.12.14 |
USB 사용가능 최대거리 (0) | 2009.11.17 |
폭설 주의보인데.. 출근해야해? (8) | 2010.01.04 |
---|---|
새해 복많이 받으세요! (4) | 2010.01.01 |
아~ 18 추워! (9) | 2009.12.21 |
리눅스 마스터 2급 2차시험 (0) | 2009.12.06 |
학교, 후회 (2) | 2009.12.05 |
dd if=/dev/zero of=/swapfile bs=1024 count=1000 mkswap /swapfile swapon /swapfile |
# swapon swapfile swapon: swapfile has holes swapon: swapfile: Invalid argument |
# swapon swapfile Adding 992k swap on swapfile. Priority:-1 extents:1 across:992k |
ntfs-3g at Tuxera (0) | 2010.01.06 |
---|---|
웹캠 VLC에서 테스트(Ubuntu 9.10) (0) | 2009.12.29 |
DNS / Host Lookup 관련 파일 (0) | 2009.12.22 |
OOM - Out of Memory (2) | 2009.12.15 |
Linux 에서 malloc 으로 할당된 memory 크기를 알 수 있는 방법 (2) | 2009.12.14 |