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년 전
감사합니다 ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1274 | ||
| 7729 | 10년 전 | 1085 | ||
| 7728 |
잘살아보자
|
10년 전 | 552 | |
| 7727 |
잘살아보자
|
10년 전 | 457 | |
| 7726 |
잘살아보자
|
10년 전 | 792 | |
| 7725 |
잘살아보자
|
10년 전 | 518 | |
| 7724 |
잘살아보자
|
10년 전 | 428 | |
| 7723 |
잘살아보자
|
10년 전 | 497 | |
| 7722 |
잘살아보자
|
10년 전 | 429 | |
| 7721 |
잘살아보자
|
10년 전 | 469 | |
| 7720 |
잘살아보자
|
10년 전 | 408 | |
| 7719 |
비긴어게인
|
10년 전 | 651 | |
| 7718 |
|
10년 전 | 2497 | |
| 7717 |
잘살아보자
|
10년 전 | 627 | |
| 7716 |
잘살아보자
|
10년 전 | 366 | |
| 7715 |
잘살아보자
|
10년 전 | 407 | |
| 7714 |
잘살아보자
|
10년 전 | 441 | |
| 7713 | 10년 전 | 1745 | ||
| 7712 | 10년 전 | 1676 | ||
| 7711 | 10년 전 | 1067 | ||
| 7710 | 10년 전 | 1345 | ||
| 7709 | 10년 전 | 1481 | ||
| 7708 | 10년 전 | 1434 | ||
| 7707 | 10년 전 | 819 | ||
| 7706 |
별지기천사
|
10년 전 | 548 | |
| 7705 | 10년 전 | 1044 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 586 | |
| 7703 | 10년 전 | 548 | ||
| 7702 |
|
10년 전 | 685 | |
| 7701 | 10년 전 | 1378 | ||
| 7700 | 10년 전 | 1078 | ||
| 7699 | 10년 전 | 562 | ||
| 7698 | 10년 전 | 1107 | ||
| 7697 | 10년 전 | 5116 | ||
| 7696 | 10년 전 | 607 | ||
| 7695 | 10년 전 | 1651 | ||
| 7694 | 10년 전 | 1018 | ||
| 7693 | 10년 전 | 1513 | ||
| 7692 | 10년 전 | 1251 | ||
| 7691 | 10년 전 | 781 | ||
| 7690 | 10년 전 | 1359 | ||
| 7689 | 10년 전 | 978 | ||
| 7688 | 10년 전 | 553 | ||
| 7687 |
파랑새1597
|
10년 전 | 554 | |
| 7686 | 10년 전 | 803 | ||
| 7685 | 10년 전 | 1318 | ||
| 7684 | 10년 전 | 771 | ||
| 7683 | 10년 전 | 1018 | ||
| 7682 | 10년 전 | 892 | ||
| 7681 | 10년 전 | 618 | ||
| 7680 | 10년 전 | 955 | ||
| 7679 | 10년 전 | 452 | ||
| 7678 | 10년 전 | 693 | ||
| 7677 | 10년 전 | 597 | ||
| 7676 |
|
10년 전 | 915 | |
| 7675 |
|
10년 전 | 1116 | |
| 7674 | 10년 전 | 1027 | ||
| 7673 | 10년 전 | 724 | ||
| 7672 | 10년 전 | 1052 | ||
| 7671 | 10년 전 | 849 | ||
| 7670 | 10년 전 | 602 | ||
| 7669 |
mashmellow
|
10년 전 | 1200 | |
| 7668 | 10년 전 | 679 | ||
| 7667 | 10년 전 | 958 | ||
| 7666 |
senseme
|
10년 전 | 624 | |
| 7665 | 10년 전 | 478 | ||
| 7664 | 10년 전 | 1869 | ||
| 7663 |
mixx애교
|
10년 전 | 953 | |
| 7662 | 10년 전 | 980 | ||
| 7661 |
hkhkah
|
10년 전 | 753 | |
| 7660 | 10년 전 | 1039 | ||
| 7659 |
커네드커네드
|
10년 전 | 909 | |
| 7658 |
바람돌이팡
|
10년 전 | 636 | |
| 7657 | 10년 전 | 1130 | ||
| 7656 | 10년 전 | 1544 | ||
| 7655 | 10년 전 | 953 | ||
| 7654 |
개발짜증나
|
10년 전 | 832 | |
| 7653 |
네이비칼라
|
10년 전 | 864 | |
| 7652 |
밥먹고합시다
|
10년 전 | 783 | |
| 7651 |
플라이SINJI
|
10년 전 | 1485 | |
| 7650 |
개발짜증나
|
10년 전 | 1377 | |
| 7649 | 10년 전 | 431 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 835 | |
| 7647 | 10년 전 | 408 | ||
| 7646 | 10년 전 | 773 | ||
| 7645 | 10년 전 | 2272 | ||
| 7644 | 10년 전 | 794 | ||
| 7643 |
|
10년 전 | 2836 | |
| 7642 | 10년 전 | 1486 | ||
| 7641 | 10년 전 | 1108 | ||
| 7640 |
개발짜증나
|
10년 전 | 452 | |
| 7639 |
|
10년 전 | 787 | |
| 7638 |
개발짜증나
|
10년 전 | 1091 | |
| 7637 | 10년 전 | 1512 | ||
| 7636 | 10년 전 | 2881 | ||
| 7635 | 10년 전 | 1658 | ||
| 7634 | 10년 전 | 1822 | ||
| 7633 | 10년 전 | 2291 | ||
| 7632 | 10년 전 | 3891 | ||
| 7631 |
|
10년 전 | 1503 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기