uname 이라는 명령이 있습니다.
mysql performance를 좋게 하기위해 64bit server os 를 설치할 경우가 있습니다.
uname -rm ---> 이 명령을 가장 많이 사용합니다.
2.6.18-164.9.1.el5 i686
커널 버전 cpu 아키텍처
x86 이렇게 보이면 64bit os 로 설치 된것입니다.
옵션입니다. 참고하세요.
Print certain system information. With no OPTION, same as -s.
-a, --all print all information, in the following order,
except omit -p and -i if unknown:
-s, --kernel-name print the kernel name
-n, --nodename print the network node hostname
-r, --kernel-release print the kernel release
-v, --kernel-version print the kernel version
-m, --machine print the machine hardware name
-p, --processor print the processor type or "unknown"
-i, --hardware-platform print the hardware platform or "unknown"
-o, --operating-system print the operating system
--help display this help and exit
--version output version information and exit
cpu 종류를 확인하고자 한다면 아래 명령을 사용합니다.
[root@test ~]# cat /proc/cpuinfo
...
model name : Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz
...
랜카드 정보를 확인할려면 아래 명령을 사용합니다.
[root@test ~]# lspci
...
00:08.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 40)
...
다른 기본 정보를 확인하실려면 hwconf 파일을 보세요.
[root@test ~]# vi /etc/sysconfig/hwconf
[root@test ~]# cat /var/log/messages | grep "CPU"
Nov 18 18:42:17 localhost kernel: Initializing CPU#0
Nov 18 18:42:17 localhost kernel: CPU 0 irqstacks, hard=c0761000 soft=c0741000
Nov 18 18:42:17 localhost kernel: CPU: L1 I cache: 32K, L1 D cache: 32K
Nov 18 18:42:17 localhost kernel: CPU: L2 cache: 2048K
Nov 18 18:42:17 localhost kernel: Intel machine check reporting enabled on CPU#0.
Nov 18 18:42:17 localhost kernel: CPU0: Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz stepping 0a
...
root@test ~]# cat /var/log/messages | grep eth0
Nov 18 18:42:17 localhost kernel: eth0: registered as PCnet/FAST III 79C973
Nov 18 18:42:18 localhost kernel: eth0: link up, 100Mbps, full-duplex
...
자세한 정보를 확인할려면 lshw 패키지를 설치하셔서 보시면 됩니다.
[root@test src]# lshw -short
H/W path Device Class Description
======================================================
system VirtualBox
/0 bus Motherboard
/0/0 memory 128KiB BIOS
/0/1 memory 511MiB System memory
/0/2 processor Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz
/0/2/0.1 processor Logical CPU
/0/2/0.2 processor Logical CPU
/0/2/0.3 processor Logical CPU
/0/2/0.4 processor Logical CPU
/0/100 bridge 440FX - 82441FX PMC [Natoma]
/0/100/1 bridge 82371SB PIIX3 ISA [Natoma/Triton II]
/0/100/1.1 storage 82371AB/EB/MB PIIX4 IDE
/0/100/1.1/0 ide0 bus IDE Channel 0
/0/100/1.1/0/0 /dev/hda disk 21GB VBOX HARDDISK
/0/100/1.1/0/0/1 /dev/hda1 volume 101MiB EXT3 volume
/0/100/1.1/0/0/2 /dev/hda2 volume 10001MiB EXT3 volume
/0/100/1.1/0/0/3 /dev/hda3 volume 1004MiB Linux swap volume
/0/100/1.1/0/0/4 /dev/hda4 volume 9366MiB Extended partition
/0/100/1.1/0/0/4/5 /dev/hda5 volume 9365MiB Linux filesystem partition
/0/100/1.1/1 ide1 bus IDE Channel 1
/0/100/1.1/1/0 /dev/hdc disk VBOX CD-ROM
/0/100/2 display VirtualBox Graphics Adapter
/0/100/3 eth0 network 79c970 [PCnet32 LANCE]
/0/100/4 system VirtualBox Guest Service
/0/100/5 multimedia 82801AA AC'97 Audio Controller
/0/100/6 bus KeyLargo/Intrepid USB
/0/100/6/1 usb2 bus OHCI Host Controller
/0/100/7 bridge 82371AB/EB/MB PIIX4 ACPI
/0/100/8 eth1 network 79c970 [PCnet32 LANCE]
/0/100/b bus 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller
/0/100/b/1 usb1 bus EHCI Host Controller<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
mysql performance를 좋게 하기위해 64bit server os 를 설치할 경우가 있습니다.
uname -rm ---> 이 명령을 가장 많이 사용합니다.
2.6.18-164.9.1.el5 i686
커널 버전 cpu 아키텍처
x86 이렇게 보이면 64bit os 로 설치 된것입니다.
옵션입니다. 참고하세요.
Print certain system information. With no OPTION, same as -s.
-a, --all print all information, in the following order,
except omit -p and -i if unknown:
-s, --kernel-name print the kernel name
-n, --nodename print the network node hostname
-r, --kernel-release print the kernel release
-v, --kernel-version print the kernel version
-m, --machine print the machine hardware name
-p, --processor print the processor type or "unknown"
-i, --hardware-platform print the hardware platform or "unknown"
-o, --operating-system print the operating system
--help display this help and exit
--version output version information and exit
cpu 종류를 확인하고자 한다면 아래 명령을 사용합니다.
[root@test ~]# cat /proc/cpuinfo
...
model name : Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz
...
랜카드 정보를 확인할려면 아래 명령을 사용합니다.
[root@test ~]# lspci
...
00:08.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 40)
...
다른 기본 정보를 확인하실려면 hwconf 파일을 보세요.
[root@test ~]# vi /etc/sysconfig/hwconf
[root@test ~]# cat /var/log/messages | grep "CPU"
Nov 18 18:42:17 localhost kernel: Initializing CPU#0
Nov 18 18:42:17 localhost kernel: CPU 0 irqstacks, hard=c0761000 soft=c0741000
Nov 18 18:42:17 localhost kernel: CPU: L1 I cache: 32K, L1 D cache: 32K
Nov 18 18:42:17 localhost kernel: CPU: L2 cache: 2048K
Nov 18 18:42:17 localhost kernel: Intel machine check reporting enabled on CPU#0.
Nov 18 18:42:17 localhost kernel: CPU0: Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz stepping 0a
...
root@test ~]# cat /var/log/messages | grep eth0
Nov 18 18:42:17 localhost kernel: eth0: registered as PCnet/FAST III 79C973
Nov 18 18:42:18 localhost kernel: eth0: link up, 100Mbps, full-duplex
...
자세한 정보를 확인할려면 lshw 패키지를 설치하셔서 보시면 됩니다.
[root@test src]# lshw -short
H/W path Device Class Description
======================================================
system VirtualBox
/0 bus Motherboard
/0/0 memory 128KiB BIOS
/0/1 memory 511MiB System memory
/0/2 processor Intel(R) Core(TM)2 Quad CPU Q8200 @ 2.33GHz
/0/2/0.1 processor Logical CPU
/0/2/0.2 processor Logical CPU
/0/2/0.3 processor Logical CPU
/0/2/0.4 processor Logical CPU
/0/100 bridge 440FX - 82441FX PMC [Natoma]
/0/100/1 bridge 82371SB PIIX3 ISA [Natoma/Triton II]
/0/100/1.1 storage 82371AB/EB/MB PIIX4 IDE
/0/100/1.1/0 ide0 bus IDE Channel 0
/0/100/1.1/0/0 /dev/hda disk 21GB VBOX HARDDISK
/0/100/1.1/0/0/1 /dev/hda1 volume 101MiB EXT3 volume
/0/100/1.1/0/0/2 /dev/hda2 volume 10001MiB EXT3 volume
/0/100/1.1/0/0/3 /dev/hda3 volume 1004MiB Linux swap volume
/0/100/1.1/0/0/4 /dev/hda4 volume 9366MiB Extended partition
/0/100/1.1/0/0/4/5 /dev/hda5 volume 9365MiB Linux filesystem partition
/0/100/1.1/1 ide1 bus IDE Channel 1
/0/100/1.1/1/0 /dev/hdc disk VBOX CD-ROM
/0/100/2 display VirtualBox Graphics Adapter
/0/100/3 eth0 network 79c970 [PCnet32 LANCE]
/0/100/4 system VirtualBox Guest Service
/0/100/5 multimedia 82801AA AC'97 Audio Controller
/0/100/6 bus KeyLargo/Intrepid USB
/0/100/6/1 usb2 bus OHCI Host Controller
/0/100/7 bridge 82371AB/EB/MB PIIX4 ACPI
/0/100/8 eth1 network 79c970 [PCnet32 LANCE]
/0/100/b bus 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller
/0/100/b/1 usb1 bus EHCI Host Controller<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
댓글 6개
14년 전
까페24에서 비지니스 가상호스팅(월 2만원도 안함)을 하는데... 아래처럼 나오네요...
가상이지만 CPU를 7개나? 정말?
========================================================================================
[root@jonielm ~]# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 1
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 2
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 3
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 4
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 5
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 6
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 7
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
가상이지만 CPU를 7개나? 정말?
========================================================================================
[root@jonielm ~]# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 1
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 2
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 3
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 4
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 5
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 6
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
stepping : 5
cpu MHz : 2127.998
cache size : 4096 KB
physical id : 7
siblings : 1
core id : 0
cpu cores : 1
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu tsc msr pae cx8 apic cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc pni est ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
bogomips : 5326.67
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
haejuksun
14년 전
Processor Number E5506
# of Cores 4
# of Threads 4
# of Cores 4
# of Threads 4
카사노바왕
14년 전
111111111
13년 전
감사요
techer
13년 전
자료 감사합니다.
13년 전
감사합니다 ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3330 |
마케팅메지션
|
14년 전 | 1461 | |
| 3329 | 14년 전 | 1316 | ||
| 3328 | 14년 전 | 1006 | ||
| 3327 | 14년 전 | 1433 | ||
| 3326 | 14년 전 | 1273 | ||
| 3325 | 14년 전 | 1541 | ||
| 3324 | 14년 전 | 994 | ||
| 3323 | 14년 전 | 1231 | ||
| 3322 |
수야3019
|
14년 전 | 1034 | |
| 3321 |
|
14년 전 | 1390 | |
| 3320 | 14년 전 | 855 | ||
| 3319 | 14년 전 | 2251 | ||
| 3318 | 14년 전 | 1460 | ||
| 3317 | 14년 전 | 3064 | ||
| 3316 |
|
14년 전 | 1439 | |
| 3315 | 14년 전 | 1210 | ||
| 3314 |
마케팅메지션
|
14년 전 | 1255 | |
| 3313 |
마케팅메지션
|
14년 전 | 1254 | |
| 3312 | 14년 전 | 718 | ||
| 3311 | 14년 전 | 981 | ||
| 3310 | 14년 전 | 1025 | ||
| 3309 | 14년 전 | 2481 | ||
| 3308 |
visualp
|
14년 전 | 1118 | |
| 3307 |
사랑은봄비처럼
|
14년 전 | 3479 | |
| 3306 |
디자이너몽
|
14년 전 | 952 | |
| 3305 |
달콤한인생
|
14년 전 | 786 | |
| 3304 | 14년 전 | 851 | ||
| 3303 |
haejuksun
|
14년 전 | 1835 | |
| 3302 | 14년 전 | 1457 | ||
| 3301 | 14년 전 | 1264 | ||
| 3300 | 14년 전 | 1329 | ||
| 3299 | 14년 전 | 1254 | ||
| 3298 | 14년 전 | 1357 | ||
| 3297 | 14년 전 | 1017 | ||
| 3296 | 14년 전 | 618 | ||
| 3295 | 14년 전 | 1132 | ||
| 3294 |
haejuksun
|
14년 전 | 2284 | |
| 3293 |
haejuksun
|
14년 전 | 1600 | |
| 3292 |
haejuksun
|
14년 전 | 1972 | |
| 3291 |
|
14년 전 | 1023 | |
| 3290 | 14년 전 | 1354 | ||
| 3289 |
haejuksun
|
14년 전 | 1657 | |
| 3288 |
haejuksun
|
14년 전 | 1782 | |
| 3287 | 14년 전 | 1140 | ||
| 3286 | 14년 전 | 1067 | ||
| 3285 | 14년 전 | 1142 | ||
| 3284 | 14년 전 | 595 | ||
| 3283 |
쉽다zzz
|
14년 전 | 1294 | |
| 3282 |
haejuksun
|
14년 전 | 898 | |
| 3281 |
haejuksun
|
14년 전 | 1186 | |
| 3280 |
|
14년 전 | 1419 | |
| 3279 | 14년 전 | 1184 | ||
| 3278 |
|
14년 전 | 1352 | |
| 3277 | 14년 전 | 1005 | ||
| 3276 |
|
14년 전 | 1865 | |
| 3275 |
|
14년 전 | 956 | |
| 3274 |
|
14년 전 | 1327 | |
| 3273 |
visualp
|
14년 전 | 1397 | |
| 3272 | 14년 전 | 1603 | ||
| 3271 | 14년 전 | 791 | ||
| 3270 | 14년 전 | 1478 | ||
| 3269 | 14년 전 | 1360 | ||
| 3268 | 14년 전 | 1058 | ||
| 3267 |
|
14년 전 | 2081 | |
| 3266 | 14년 전 | 1189 | ||
| 3265 | 14년 전 | 1132 | ||
| 3264 | 14년 전 | 1351 | ||
| 3263 | 14년 전 | 1110 | ||
| 3262 | 14년 전 | 1325 | ||
| 3261 |
마케팅메지션
|
14년 전 | 1280 | |
| 3260 |
마케팅메지션
|
14년 전 | 923 | |
| 3259 | 14년 전 | 1640 | ||
| 3258 |
webm4
|
14년 전 | 1644 | |
| 3257 |
디자이너몽
|
14년 전 | 606 | |
| 3256 | 14년 전 | 626 | ||
| 3255 | 14년 전 | 3064 | ||
| 3254 | 14년 전 | 1994 | ||
| 3253 |
어린왕자임
|
14년 전 | 1107 | |
| 3252 |
어린왕자임
|
14년 전 | 617 | |
| 3251 | 14년 전 | 622 | ||
| 3250 | 14년 전 | 1083 | ||
| 3249 |
소프트대가
|
14년 전 | 1390 | |
| 3248 | 14년 전 | 1261 | ||
| 3247 | 14년 전 | 1041 | ||
| 3246 |
|
14년 전 | 1308 | |
| 3245 |
소프트대가
|
14년 전 | 1026 | |
| 3244 |
소프트대가
|
14년 전 | 1558 | |
| 3243 | 14년 전 | 593 | ||
| 3242 | 14년 전 | 969 | ||
| 3241 |
visualp
|
14년 전 | 590 | |
| 3240 |
쉽다zzz
|
14년 전 | 1046 | |
| 3239 | 14년 전 | 671 | ||
| 3238 | 14년 전 | 935 | ||
| 3237 |
디자이너몽
|
14년 전 | 647 | |
| 3236 |
TWM소프트
|
14년 전 | 915 | |
| 3235 | 14년 전 | 1180 | ||
| 3234 |
쉽다zzz
|
14년 전 | 2683 | |
| 3233 | 14년 전 | 1004 | ||
| 3232 |
|
14년 전 | 4382 | |
| 3231 | 14년 전 | 1878 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기