| 1 | [[PageOutline]] |
| 2 | |
| 3 | * http://vps.sakura.ad.jp/ |
| 4 | |
| 5 | * [https://secure.sakura.ad.jp/vpscontrol/ さくらインターネットVPSコントロールパネル] |
| 6 | * http://support.sakura.ad.jp/page/manual/vps |
| 7 | |
| 8 | = Spec = |
| 9 | * [http://vps.sakura.ad.jp/specification.html サービス仕様|VPS(仮想専用サーバ)は「さくらのVPS」] |
| 10 | |
| 11 | == Ubuntu lucid == |
| 12 | === df -h === |
| 13 | {{{ |
| 14 | Filesystem Size Used Avail Use% Mounted on |
| 15 | /dev/sda1 20G 647M 19G 4% / |
| 16 | none 243M 160K 243M 1% /dev |
| 17 | none 247M 0 247M 0% /dev/shm |
| 18 | none 247M 32K 247M 1% /var/run |
| 19 | none 247M 0 247M 0% /var/lock |
| 20 | none 247M 0 247M 0% /lib/init/rw |
| 21 | }}} |
| 22 | |
| 23 | === sudo fdisk -lu /dev/sda === |
| 24 | {{{ |
| 25 | Disk /dev/sda: 21.5 GB, 21474836480 bytes |
| 26 | 255 heads, 63 sectors/track, 2610 cylinders, total 41943040 sectors |
| 27 | Units = sectors of 1 * 512 = 512 bytes |
| 28 | Sector size (logical/physical): 512 bytes / 512 bytes |
| 29 | I/O size (minimum/optimal): 512 bytes / 512 bytes |
| 30 | Disk identifier: 0x000eff6a |
| 31 | |
| 32 | Device Boot Start End Blocks Id System |
| 33 | /dev/sda1 * 2048 40105983 20051968 83 Linux |
| 34 | /dev/sda2 40105984 41940991 917504 82 Linux swap / Solaris |
| 35 | }}} |
| 36 | |
| 37 | === sudo hdparm -tT /dev/sda === |
| 38 | {{{ |
| 39 | /dev/sda: |
| 40 | Timing cached reads: 14280 MB in 2.00 seconds = 7147.01 MB/sec |
| 41 | Timing buffered disk reads: 276 MB in 3.02 seconds = 91.41 MB/sec |
| 42 | }}} |
| 43 | |
| 44 | == CentOS 5.5 == |
| 45 | * サービスイン直後 |
| 46 | |
| 47 | === # lspci === |
| 48 | {{{ |
| 49 | 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02) |
| 50 | 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] |
| 51 | 00:01.1 IDE interface: Intel Corporation 82371SB PIIX3 IDE [Natoma/Triton II] |
| 52 | 00:01.2 USB Controller: Intel Corporation 82371SB PIIX3 USB [Natoma/Triton II] (rev 01) |
| 53 | 00:01.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03) |
| 54 | 00:02.0 VGA compatible controller: Technical Corp. Unknown device 1111 |
| 55 | 00:03.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet Controller (rev 03) |
| 56 | }}} |
| 57 | |
| 58 | === # ifconfig -a === |
| 59 | {{{ |
| 60 | eth0 Link encap:Ethernet HWaddr 52:54:XX:XX:XX:XX |
| 61 | inet addr:59.106.180.xyz Bcast:59.106.181.255 Mask:255.255.254.0 |
| 62 | inet6 addr: fe80::5054:XX:XX:XX/64 Scope:Link |
| 63 | UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 |
| 64 | RX packets:1387 errors:0 dropped:0 overruns:0 frame:0 |
| 65 | TX packets:103 errors:0 dropped:0 overruns:0 carrier:0 |
| 66 | collisions:0 txqueuelen:1000 |
| 67 | RX bytes:88422 (86.3 KiB) TX bytes:12096 (11.8 KiB) |
| 68 | |
| 69 | lo Link encap:Local Loopback |
| 70 | inet addr:127.0.0.1 Mask:255.0.0.0 |
| 71 | inet6 addr: ::1/128 Scope:Host |
| 72 | UP LOOPBACK RUNNING MTU:16436 Metric:1 |
| 73 | RX packets:0 errors:0 dropped:0 overruns:0 frame:0 |
| 74 | TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 |
| 75 | collisions:0 txqueuelen:0 |
| 76 | RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) |
| 77 | |
| 78 | sit0 Link encap:IPv6-in-IPv4 |
| 79 | NOARP MTU:1480 Metric:1 |
| 80 | RX packets:0 errors:0 dropped:0 overruns:0 frame:0 |
| 81 | TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 |
| 82 | collisions:0 txqueuelen:0 |
| 83 | RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) |
| 84 | }}} |
| 85 | |
| 86 | === # route === |
| 87 | {{{ |
| 88 | Kernel IP routing table |
| 89 | Destination Gateway Genmask Flags Metric Ref Use Iface |
| 90 | 59.106.180.0 * 255.255.254.0 U 0 0 0 eth0 |
| 91 | 169.254.0.0 * 255.255.0.0 U 0 0 0 eth0 |
| 92 | default 59.106.180.1 0.0.0.0 UG 0 0 0 eth0 |
| 93 | }}} |
| 94 | |
| 95 | === # cat /etc/resolv.conf === |
| 96 | {{{ |
| 97 | nameserver 210.188.224.10 |
| 98 | nameserver 210.188.224.11 |
| 99 | search sakura.ne.jp |
| 100 | }}} |
| 101 | |
| 102 | === # hostname === |
| 103 | {{{ |
| 104 | www5XYZu.sakura.ne.jp |
| 105 | }}} |
| 106 | |
| 107 | === # df -h === |
| 108 | {{{ |
| 109 | Filesystem Size Used Avail Use% Mounted on |
| 110 | /dev/hda2 18G 1.5G 15G 10% / |
| 111 | /dev/hda1 99M 12M 82M 13% /boot |
| 112 | tmpfs 250M 0 250M 0% /dev/shm |
| 113 | }}} |
| 114 | |
| 115 | === # fdisk -lu /dev/hda === |
| 116 | {{{ |
| 117 | Disk /dev/hda: 21.4 GB, 21474836480 bytes |
| 118 | 255 heads, 63 sectors/track, 2610 cylinders, total 41943040 sectors |
| 119 | Units = sectors of 1 * 512 = 512 bytes |
| 120 | |
| 121 | Device Boot Start End Blocks Id System |
| 122 | /dev/hda1 * 63 208844 104391 83 Linux |
| 123 | /dev/hda2 208845 37833074 18812115 83 Linux |
| 124 | /dev/hda3 37833075 41929649 2048287+ 82 Linux swap / Solaris |
| 125 | }}} |
| 126 | |
| 127 | === # cat /proc/cpuinfo === |
| 128 | {{{ |
| 129 | processor : 0 |
| 130 | vendor_id : GenuineIntel |
| 131 | cpu family : 6 |
| 132 | model : 15 |
| 133 | model name : Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz |
| 134 | stepping : 11 |
| 135 | cpu MHz : 2660.040 |
| 136 | cache size : 4096 KB |
| 137 | fpu : yes |
| 138 | fpu_exception : yes |
| 139 | cpuid level : 10 |
| 140 | wp : yes |
| 141 | flags : fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx lm constant_tsc pni ssse3 lahf_lm |
| 142 | bogomips : 5320.08 |
| 143 | clflush size : 64 |
| 144 | cache_alignment : 64 |
| 145 | address sizes : 40 bits physical, 48 bits virtual |
| 146 | power management: |
| 147 | |
| 148 | processor : 1 |
| 149 | vendor_id : GenuineIntel |
| 150 | cpu family : 6 |
| 151 | model : 15 |
| 152 | model name : Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz |
| 153 | stepping : 11 |
| 154 | cpu MHz : 2660.040 |
| 155 | cache size : 4096 KB |
| 156 | fpu : yes |
| 157 | fpu_exception : yes |
| 158 | cpuid level : 10 |
| 159 | wp : yes |
| 160 | flags : fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx lm constant_tsc pni ssse3 lahf_lm |
| 161 | bogomips : 5280.22 |
| 162 | clflush size : 64 |
| 163 | cache_alignment : 64 |
| 164 | address sizes : 40 bits physical, 48 bits virtual |
| 165 | power management: |
| 166 | }}} |
| 167 | |
| 168 | === # hdparm -tT /dev/hda === |
| 169 | {{{ |
| 170 | /dev/hda: |
| 171 | Timing cached reads: 20580 MB in 2.00 seconds = 10297.90 MB/sec |
| 172 | Timing buffered disk reads: 266 MB in 3.02 seconds = 88.20 MB/sec |
| 173 | }}} |
| 174 | |
| 175 | == GRUB == |
| 176 | === CentOS 5.5 === |
| 177 | * # cat /boot/grub/grub.conf |
| 178 | {{{ |
| 179 | # grub.conf generated by anaconda |
| 180 | # |
| 181 | # Note that you do not have to rerun grub after making changes to this file |
| 182 | # NOTICE: You have a /boot partition. This means that |
| 183 | # all kernel and initrd paths are relative to /boot/, eg. |
| 184 | # root (hd0,0) |
| 185 | # kernel /vmlinuz-version ro root=/dev/vda2 |
| 186 | # initrd /initrd-version.img |
| 187 | #boot=/dev/vda |
| 188 | default=0 |
| 189 | timeout=5 |
| 190 | #splashimage=(hd0,0)/grub/splash.xpm.gz |
| 191 | serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1 |
| 192 | terminal --timeout=10 serial console |
| 193 | hiddenmenu |
| 194 | title CentOS (2.6.18-194.8.1.el5) |
| 195 | root (hd0,0) |
| 196 | kernel /vmlinuz-2.6.18-194.8.1.el5 ro root=LABEL=/ console=tty0 console=ttyS0,115200n8r |
| 197 | initrd /initrd-2.6.18-194.8.1.el5.img |
| 198 | }}} |