前回から引き続き、DigitalOceanで構築したCentOS7でSoftEtherを使ってVPNの環境を構築しようと思います。
ホテルやカフェなんかの公衆無線LANだと暗号化されていなかったり、知らない人のルータを使用しているので、ちょっと心配ですよね。
そんな時に1時間1円で動作させられるDigitalOceanでセキュリティを確保できたら安心ですよね
DigitalOceanのページに説明があったので、参考にさせていただきました。
How to Setup a Multi-Protocol VPN Server Using SoftEther
Debian/Ubuntu/CentOS/Fedoraの手順が載っています。
OSごとに手順があると進めやすくていいですね。
当然CentOSの手順に従って進めていきます。
まずはyumで最新にアップデートします。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[root@centos-512mb-sgp1-01 ~]# yum upgrade Loaded plugins: fastestmirror base | 3.6 kB 00:00 extras | 3.4 kB 00:00 updates | 3.4 kB 00:00 (1/4): base/7/x86_64/group_gz | 154 kB 00:02 (2/4): extras/7/x86_64/primary_db | 120 kB 00:03 (3/4): base/7/x86_64/primary_db | 5.1 MB 00:06 (4/4): updates/7/x86_64/primary_db | 4.7 MB 00:09 Determining fastest mirrors * base: mirror.previder.nl * extras: mirror.previder.nl * updates: mirror.widexs.nl No packages marked for update |
さすが、作成したばかりなので最新になっているみたいです。
続いてSoftEtherをインストールしていきますが、SoftEtherはRPMの形で提供されていないのでtarボールをダウンロードして自分でモジュール生成とインストールを進める必要があるようです。
SoftEtherの公式サイトから自分のOSに合ったtarボールをダウンロードします。
参考にしたサイトではlynxをインストールしてダウンロードしていますが、このサイトを見ているのであればWindowsにしろMacにしろブラウザを持っていると思います。
URLさえわかればCentOS7の最少インストールでwgetがインストールされているので、lynxは不要かと思います。
CentOS7 64bitですので、ベータ版を避けて最新版である「softether-vpnserver-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz」を選択しました。
早速wgetでダウンロードします。/tmpで作業することにしました。
1 2 3 4 5 6 7 8 9 10 11 12 |
[root@centos-512mb-sgp1-01 ~]# cd /tmp [root@centos-512mb-sgp1-01 tmp]# wget http://www.softether-download.com/files/softether/v4.18-9570-rtm-2015.07.26-tree/Linux/SoftEther_VPN_Server/64bit_-_Intel_x64_or_AMD64/softether-vpnserver-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz --2015-12-14 00:01:20-- http://www.softether-download.com/files/softether/v4.18-9570-rtm-2015.07.26-tree/Linux/SoftEther_VPN_Server/64bit_-_Intel_x64_or_AMD64/softether-vpnserver-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz Resolving www.softether-download.com (www.softether-download.com)... 130.158.75.49 Connecting to www.softether-download.com (www.softether-download.com)|130.158.75.49|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 6231669 (5.9M) [application/x-gzip] Saving to: ‘softether-vpnserver-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz’ 100%[======================================>] 6,231,669 3.29MB/s in 1.8s 2015-12-14 00:01:22 (3.29 MB/s) - ‘softether-vpnserver-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz’ saved [6231669/6231669] |
6MB程度なので、あっという間ですね
早速tarボールを展開します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[root@centos-512mb-sgp1-01 tmp]# tar zxvf softether-vpnserver-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz vpnserver/ vpnserver/Makefile vpnserver/.install.sh vpnserver/ReadMeFirst_License.txt vpnserver/Authors.txt vpnserver/ReadMeFirst_Important_Notices_ja.txt vpnserver/ReadMeFirst_Important_Notices_en.txt vpnserver/ReadMeFirst_Important_Notices_cn.txt vpnserver/code/ vpnserver/code/vpnserver.a vpnserver/code/vpncmd.a vpnserver/lib/ vpnserver/lib/libcharset.a vpnserver/lib/libcrypto.a vpnserver/lib/libedit.a vpnserver/lib/libiconv.a vpnserver/lib/libintelaes.a vpnserver/lib/libncurses.a vpnserver/lib/libssl.a vpnserver/lib/libz.a vpnserver/lib/License.txt vpnserver/hamcore.se2 |
これからSoftEtherをインストールしていくわけですが、最少インストールではgccなどのコンパイラがインストールされていないので、インストールします。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 |
[root@centos-512mb-sgp1-01 tmp]# yum groupinstall "Development Tools" Loaded plugins: fastestmirror There is no installed groups file. Maybe run: yum groups mark convert (see man yum) Loading mirror speeds from cached hostfile * base: mirror.previder.nl * extras: mirror.previder.nl * updates: mirror.widexs.nl Resolving Dependencies --> Running transaction check ---> Package autoconf.noarch 0:2.69-11.el7 will be installed --> Processing Dependency: perl >= 5.006 for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(warnings) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(vars) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(strict) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(constant) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Text::ParseWords) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(POSIX) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(IO::File) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Getopt::Long) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::stat) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::Spec) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::Path) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::Find) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::Copy) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::Compare) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(File::Basename) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Exporter) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Errno) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(DynaLoader) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Cwd) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Class::Struct) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: perl(Carp) for package: autoconf-2.69-11.el7.noarch --> Processing Dependency: /usr/bin/perl for package: autoconf-2.69-11.el7.noarch ---> Package automake.noarch 0:1.13.4-3.el7 will be installed --> Processing Dependency: perl(threads) for package: automake-1.13.4-3.el7.noarch --> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.el7.noarch --> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.el7.noarch ---> Package bison.x86_64 0:2.7-4.el7 will be installed ---> Package byacc.x86_64 0:1.9.20130304-3.el7 will be installed ---> Package cscope.x86_64 0:15.8-7.el7 will be installed --> Processing Dependency: emacs-filesystem for package: cscope-15.8-7.el7.x86_64 ---> Package ctags.x86_64 0:5.8-13.el7 will be installed ---> Package diffstat.x86_64 0:1.57-4.el7 will be installed ---> Package doxygen.x86_64 1:1.8.5-3.el7 will be installed ---> Package elfutils.x86_64 0:0.160-1.el7 will be installed ---> Package flex.x86_64 0:2.5.37-3.el7 will be installed ---> Package gcc.x86_64 0:4.8.3-9.el7 will be installed --> Processing Dependency: cpp = 4.8.3-9.el7 for package: gcc-4.8.3-9.el7.x86_64 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.3-9.el7.x86_64 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-4.8.3-9.el7.x86_64 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-4.8.3-9.el7.x86_64 ---> Package gcc-c++.x86_64 0:4.8.3-9.el7 will be installed --> Processing Dependency: libstdc++-devel = 4.8.3-9.el7 for package: gcc-c++-4.8.3-9.el7.x86_64 ---> Package gcc-gfortran.x86_64 0:4.8.3-9.el7 will be installed --> Processing Dependency: libquadmath-devel = 4.8.3-9.el7 for package: gcc-gfortran-4.8.3-9.el7.x86_64 --> Processing Dependency: libquadmath = 4.8.3-9.el7 for package: gcc-gfortran-4.8.3-9.el7.x86_64 --> Processing Dependency: libgfortran = 4.8.3-9.el7 for package: gcc-gfortran-4.8.3-9.el7.x86_64 --> Processing Dependency: libgfortran.so.3()(64bit) for package: gcc-gfortran-4.8.3-9.el7.x86_64 ---> Package git.x86_64 0:1.8.3.1-4.el7 will be installed --> Processing Dependency: perl-Git = 1.8.3.1-4.el7 for package: git-1.8.3.1-4.el7.x86_64 --> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-4.el7.x86_64 --> Processing Dependency: perl(Git) for package: git-1.8.3.1-4.el7.x86_64 --> Processing Dependency: perl(File::Temp) for package: git-1.8.3.1-4.el7.x86_64 --> Processing Dependency: perl(Error) for package: git-1.8.3.1-4.el7.x86_64 --> Processing Dependency: libgnome-keyring.so.0()(64bit) for package: git-1.8.3.1-4.el7.x86_64 ---> Package indent.x86_64 0:2.2.11-13.el7 will be installed ---> Package intltool.noarch 0:0.50.2-6.el7 will be installed --> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-6.el7.noarch --> Processing Dependency: perl(Encode) for package: intltool-0.50.2-6.el7.noarch --> Processing Dependency: gettext-devel for package: intltool-0.50.2-6.el7.noarch ---> Package libtool.x86_64 0:2.4.2-20.el7 will be installed ---> Package patch.x86_64 0:2.7.1-8.el7 will be installed ---> Package patchutils.x86_64 0:0.3.3-4.el7 will be installed ---> Package rcs.x86_64 0:5.9.0-5.el7 will be installed ---> Package redhat-rpm-config.noarch 0:9.1.0-68.el7.centos will be installed --> Processing Dependency: dwz >= 0.4 for package: redhat-rpm-config-9.1.0-68.el7.centos.noarch --> Processing Dependency: zip for package: redhat-rpm-config-9.1.0-68.el7.centos.noarch --> Processing Dependency: perl-srpm-macros for package: redhat-rpm-config-9.1.0-68.el7.centos.noarch ---> Package rpm-build.x86_64 0:4.11.1-25.el7 will be installed --> Processing Dependency: unzip for package: rpm-build-4.11.1-25.el7.x86_64 --> Processing Dependency: bzip2 for package: rpm-build-4.11.1-25.el7.x86_64 --> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.1-25.el7.x86_64 ---> Package rpm-sign.x86_64 0:4.11.1-25.el7 will be installed ---> Package subversion.x86_64 0:1.7.14-7.el7_1.1 will be installed --> Processing Dependency: subversion-libs(x86-64) = 1.7.14-7.el7_1.1 for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 --> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-7.el7_1.1.x86_64 ---> Package swig.x86_64 0:2.0.10-4.el7 will be installed ---> Package systemtap.x86_64 0:2.6-10.el7_1 will be installed --> Processing Dependency: systemtap-devel = 2.6-10.el7_1 for package: systemtap-2.6-10.el7_1.x86_64 --> Processing Dependency: systemtap-client = 2.6-10.el7_1 for package: systemtap-2.6-10.el7_1.x86_64 --> Running transaction check ---> Package apr.x86_64 0:1.4.8-3.el7 will be installed ---> Package apr-util.x86_64 0:1.5.2-6.el7 will be installed ---> Package bzip2.x86_64 0:1.0.6-12.el7 will be installed ---> Package cpp.x86_64 0:4.8.3-9.el7 will be installed ---> Package dwz.x86_64 0:0.11-3.el7 will be installed ---> Package emacs-filesystem.noarch 1:24.3-11.el7 will be installed ---> Package gdb.x86_64 0:7.6.1-64.el7 will be installed ---> Package gettext-devel.x86_64 0:0.18.2.1-4.el7 will be installed --> Processing Dependency: gettext-common-devel = 0.18.2.1-4.el7 for package: gettext-devel-0.18.2.1-4.el7.x86_64 ---> Package glibc-devel.x86_64 0:2.17-78.el7 will be installed --> Processing Dependency: glibc-headers = 2.17-78.el7 for package: glibc-devel-2.17-78.el7.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.17-78.el7.x86_64 ---> Package libgfortran.x86_64 0:4.8.3-9.el7 will be installed ---> Package libgnome-keyring.x86_64 0:3.8.0-3.el7 will be installed ---> Package libmpc.x86_64 0:1.0.1-3.el7 will be installed ---> Package libquadmath.x86_64 0:4.8.3-9.el7 will be installed ---> Package libquadmath-devel.x86_64 0:4.8.3-9.el7 will be installed ---> Package libstdc++-devel.x86_64 0:4.8.3-9.el7 will be installed ---> Package m4.x86_64 0:1.4.16-9.el7 will be installed ---> Package mpfr.x86_64 0:3.1.1-4.el7 will be installed ---> Package neon.x86_64 0:0.30.0-3.el7 will be installed --> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-3.el7.x86_64 ---> Package perl.x86_64 4:5.16.3-285.el7 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-285.el7 for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-285.el7.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-285.el7.x86_64 ---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed ---> Package perl-Data-Dumper.x86_64 0:2.145-3.el7 will be installed ---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed ---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed ---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed ---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch ---> Package perl-Git.noarch 0:1.8.3.1-4.el7 will be installed ---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed ---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed ---> Package perl-Test-Harness.noarch 0:3.28-2.el7 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed ---> Package perl-Thread-Queue.noarch 0:3.02-2.el7 will be installed ---> Package perl-XML-Parser.x86_64 0:2.41-10.el7 will be installed ---> Package perl-constant.noarch 0:1.27-2.el7 will be installed ---> Package perl-srpm-macros.noarch 0:1-8.el7 will be installed ---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed ---> Package subversion-libs.x86_64 0:1.7.14-7.el7_1.1 will be installed ---> Package systemtap-client.x86_64 0:2.6-10.el7_1 will be installed --> Processing Dependency: systemtap-runtime = 2.6-10.el7_1 for package: systemtap-client-2.6-10.el7_1.x86_64 --> Processing Dependency: mokutil for package: systemtap-client-2.6-10.el7_1.x86_64 ---> Package systemtap-devel.x86_64 0:2.6-10.el7_1 will be installed --> Processing Dependency: kernel-devel for package: systemtap-devel-2.6-10.el7_1.x86_64 ---> Package unzip.x86_64 0:6.0-15.el7 will be installed ---> Package zip.x86_64 0:3.0-10.el7 will be installed --> Running transaction check ---> Package gettext-common-devel.noarch 0:0.18.2.1-4.el7 will be installed ---> Package glibc-headers.x86_64 0:2.17-78.el7 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-78.el7.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.17-78.el7.x86_64 ---> Package kernel-devel.x86_64 0:3.10.0-229.20.1.el7 will be installed ---> Package mokutil.x86_64 0:0.7-5.el7 will be installed ---> Package pakchois.x86_64 0:0.4-10.el7 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed ---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed ---> Package perl-libs.x86_64 4:5.16.3-285.el7 will be installed ---> Package perl-macros.x86_64 4:5.16.3-285.el7 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed ---> Package systemtap-runtime.x86_64 0:2.6-10.el7_1 will be installed --> Processing Dependency: libsymtabAPI.so.8.2()(64bit) for package: systemtap-runtime-2.6-10.el7_1.x86_64 --> Processing Dependency: libdyninstAPI.so.8.2()(64bit) for package: systemtap-runtime-2.6-10.el7_1.x86_64 --> Running transaction check ---> Package dyninst.x86_64 0:8.2.0-2.el7 will be installed --> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-8.2.0-2.el7.x86_64 --> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-8.2.0-2.el7.x86_64 --> Processing Dependency: libboost_system-mt.so.1.53.0()(64bit) for package: dyninst-8.2.0-2.el7.x86_64 ---> Package kernel-headers.x86_64 0:3.10.0-229.20.1.el7 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-285.el7 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch ---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed --> Running transaction check ---> Package boost-system.x86_64 0:1.53.0-23.el7 will be installed ---> Package boost-thread.x86_64 0:1.53.0-23.el7 will be installed ---> Package libdwarf.x86_64 0:20130207-4.el7 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed ---> Package perl-parent.noarch 1:0.225-244.el7 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing for group install "Development Tools": autoconf noarch 2.69-11.el7 base 701 k automake noarch 1.13.4-3.el7 base 679 k bison x86_64 2.7-4.el7 base 578 k byacc x86_64 1.9.20130304-3.el7 base 65 k cscope x86_64 15.8-7.el7 base 203 k ctags x86_64 5.8-13.el7 base 155 k diffstat x86_64 1.57-4.el7 base 35 k doxygen x86_64 1:1.8.5-3.el7 base 3.6 M elfutils x86_64 0.160-1.el7 base 262 k flex x86_64 2.5.37-3.el7 base 292 k gcc x86_64 4.8.3-9.el7 base 16 M gcc-c++ x86_64 4.8.3-9.el7 base 7.2 M gcc-gfortran x86_64 4.8.3-9.el7 base 6.6 M git x86_64 1.8.3.1-4.el7 base 4.3 M indent x86_64 2.2.11-13.el7 base 150 k intltool noarch 0.50.2-6.el7 base 59 k libtool x86_64 2.4.2-20.el7 base 588 k patch x86_64 2.7.1-8.el7 base 110 k patchutils x86_64 0.3.3-4.el7 base 104 k rcs x86_64 5.9.0-5.el7 base 230 k redhat-rpm-config noarch 9.1.0-68.el7.centos base 77 k rpm-build x86_64 4.11.1-25.el7 base 141 k rpm-sign x86_64 4.11.1-25.el7 base 42 k subversion x86_64 1.7.14-7.el7_1.1 updates 1.0 M swig x86_64 2.0.10-4.el7 base 1.3 M systemtap x86_64 2.6-10.el7_1 updates 24 k Installing for dependencies: apr x86_64 1.4.8-3.el7 base 103 k apr-util x86_64 1.5.2-6.el7 base 92 k boost-system x86_64 1.53.0-23.el7 base 39 k boost-thread x86_64 1.53.0-23.el7 base 56 k bzip2 x86_64 1.0.6-12.el7 base 52 k cpp x86_64 4.8.3-9.el7 base 5.9 M dwz x86_64 0.11-3.el7 base 99 k dyninst x86_64 8.2.0-2.el7 base 2.5 M emacs-filesystem noarch 1:24.3-11.el7 base 57 k gdb x86_64 7.6.1-64.el7 base 2.4 M gettext-common-devel noarch 0.18.2.1-4.el7 base 368 k gettext-devel x86_64 0.18.2.1-4.el7 base 315 k glibc-devel x86_64 2.17-78.el7 base 1.0 M glibc-headers x86_64 2.17-78.el7 base 656 k kernel-devel x86_64 3.10.0-229.20.1.el7 updates 9.9 M kernel-headers x86_64 3.10.0-229.20.1.el7 updates 2.3 M libdwarf x86_64 20130207-4.el7 base 109 k libgfortran x86_64 4.8.3-9.el7 base 290 k libgnome-keyring x86_64 3.8.0-3.el7 base 109 k libmpc x86_64 1.0.1-3.el7 base 51 k libquadmath x86_64 4.8.3-9.el7 base 179 k libquadmath-devel x86_64 4.8.3-9.el7 base 42 k libstdc++-devel x86_64 4.8.3-9.el7 base 1.5 M m4 x86_64 1.4.16-9.el7 base 256 k mokutil x86_64 0.7-5.el7 base 23 k mpfr x86_64 3.1.1-4.el7 base 203 k neon x86_64 0.30.0-3.el7 base 165 k pakchois x86_64 0.4-10.el7 base 14 k perl x86_64 4:5.16.3-285.el7 base 8.0 M perl-Carp noarch 1.26-244.el7 base 19 k perl-Data-Dumper x86_64 2.145-3.el7 base 47 k perl-Encode x86_64 2.51-7.el7 base 1.5 M perl-Error noarch 1:0.17020-2.el7 base 32 k perl-Exporter noarch 5.68-3.el7 base 28 k perl-File-Path noarch 2.09-2.el7 base 26 k perl-File-Temp noarch 0.23.01-3.el7 base 56 k perl-Filter x86_64 1.49-3.el7 base 76 k perl-Getopt-Long noarch 2.40-2.el7 base 56 k perl-Git noarch 1.8.3.1-4.el7 base 52 k perl-HTTP-Tiny noarch 0.033-3.el7 base 38 k perl-PathTools x86_64 3.40-5.el7 base 82 k perl-Pod-Escapes noarch 1:1.04-285.el7 base 50 k perl-Pod-Perldoc noarch 3.20-4.el7 base 87 k perl-Pod-Simple noarch 1:3.28-4.el7 base 216 k perl-Pod-Usage noarch 1.63-3.el7 base 27 k perl-Scalar-List-Utils x86_64 1.27-248.el7 base 36 k perl-Socket x86_64 2.010-3.el7 base 49 k perl-Storable x86_64 2.45-3.el7 base 77 k perl-TermReadKey x86_64 2.30-20.el7 base 31 k perl-Test-Harness noarch 3.28-2.el7 base 302 k perl-Text-ParseWords noarch 3.29-4.el7 base 14 k perl-Thread-Queue noarch 3.02-2.el7 base 17 k perl-Time-HiRes x86_64 4:1.9725-3.el7 base 45 k perl-Time-Local noarch 1.2300-2.el7 base 24 k perl-XML-Parser x86_64 2.41-10.el7 base 223 k perl-constant noarch 1.27-2.el7 base 19 k perl-libs x86_64 4:5.16.3-285.el7 base 687 k perl-macros x86_64 4:5.16.3-285.el7 base 42 k perl-parent noarch 1:0.225-244.el7 base 12 k perl-podlators noarch 2.5.1-3.el7 base 112 k perl-srpm-macros noarch 1-8.el7 base 4.6 k perl-threads x86_64 1.87-4.el7 base 49 k perl-threads-shared x86_64 1.43-6.el7 base 39 k subversion-libs x86_64 1.7.14-7.el7_1.1 updates 922 k systemtap-client x86_64 2.6-10.el7_1 updates 3.6 M systemtap-devel x86_64 2.6-10.el7_1 updates 1.6 M systemtap-runtime x86_64 2.6-10.el7_1 updates 266 k unzip x86_64 6.0-15.el7 updates 166 k zip x86_64 3.0-10.el7 base 260 k Transaction Summary ================================================================================ Install 26 Packages (+69 Dependent packages) Total download size: 92 M Installed size: 269 M Is this ok [y/d/N]: y Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. (1/95): apr-util-1.5.2-6.el7.x86_64.rpm | 92 kB 00:01 (2/95): boost-system-1.53.0-23.el7.x86_64.rpm | 39 kB 00:00 (3/95): boost-thread-1.53.0-23.el7.x86_64.rpm | 56 kB 00:00 (4/95): apr-1.4.8-3.el7.x86_64.rpm | 103 kB 00:02 (5/95): byacc-1.9.20130304-3.el7.x86_64.rpm | 65 kB 00:00 (6/95): autoconf-2.69-11.el7.noarch.rpm | 701 kB 00:02 (7/95): bison-2.7-4.el7.x86_64.rpm | 578 kB 00:02 (8/95): cscope-15.8-7.el7.x86_64.rpm | 203 kB 00:00 (9/95): diffstat-1.57-4.el7.x86_64.rpm | 35 kB 00:00 (10/95): ctags-5.8-13.el7.x86_64.rpm | 155 kB 00:00 (11/95): bzip2-1.0.6-12.el7.x86_64.rpm | 52 kB 00:01 (12/95): dwz-0.11-3.el7.x86_64.rpm | 99 kB 00:00 (13/95): automake-1.13.4-3.el7.noarch.rpm | 679 kB 00:04 (14/95): elfutils-0.160-1.el7.x86_64.rpm | 262 kB 00:00 (15/95): doxygen-1.8.5-3.el7.x86_64.rpm | 3.6 MB 00:01 (16/95): cpp-4.8.3-9.el7.x86_64.rpm | 5.9 MB 00:02 (17/95): emacs-filesystem-24.3-11.el7.noarch.rpm | 57 kB 00:00 (18/95): flex-2.5.37-3.el7.x86_64.rpm | 292 kB 00:00 (19/95): gcc-4.8.3-9.el7.x86_64.rpm | 16 MB 00:01 (20/95): gettext-common-devel-0.18.2.1-4.el7.noarch.rpm | 368 kB 00:00 (21/95): gettext-devel-0.18.2.1-4.el7.x86_64.rpm | 315 kB 00:00 (22/95): gcc-c++-4.8.3-9.el7.x86_64.rpm | 7.2 MB 00:02 (23/95): git-1.8.3.1-4.el7.x86_64.rpm | 4.3 MB 00:00 (24/95): glibc-devel-2.17-78.el7.x86_64.rpm | 1.0 MB 00:00 (25/95): glibc-headers-2.17-78.el7.x86_64.rpm | 656 kB 00:00 (26/95): indent-2.2.11-13.el7.x86_64.rpm | 150 kB 00:00 (27/95): gdb-7.6.1-64.el7.x86_64.rpm | 2.4 MB 00:03 (28/95): intltool-0.50.2-6.el7.noarch.rpm | 59 kB 00:00 (29/95): libdwarf-20130207-4.el7.x86_64.rpm | 109 kB 00:00 (30/95): libgfortran-4.8.3-9.el7.x86_64.rpm | 290 kB 00:00 (31/95): gcc-gfortran-4.8.3-9.el7.x86_64.rpm | 6.6 MB 00:03 (32/95): libgnome-keyring-3.8.0-3.el7.x86_64.rpm | 109 kB 00:00 (33/95): libmpc-1.0.1-3.el7.x86_64.rpm | 51 kB 00:00 (34/95): libquadmath-4.8.3-9.el7.x86_64.rpm | 179 kB 00:00 (35/95): libquadmath-devel-4.8.3-9.el7.x86_64.rpm | 42 kB 00:00 (36/95): libtool-2.4.2-20.el7.x86_64.rpm | 588 kB 00:00 (37/95): libstdc++-devel-4.8.3-9.el7.x86_64.rpm | 1.5 MB 00:00 (38/95): m4-1.4.16-9.el7.x86_64.rpm | 256 kB 00:00 (39/95): mokutil-0.7-5.el7.x86_64.rpm | 23 kB 00:00 (40/95): mpfr-3.1.1-4.el7.x86_64.rpm | 203 kB 00:00 (41/95): neon-0.30.0-3.el7.x86_64.rpm | 165 kB 00:00 (42/95): pakchois-0.4-10.el7.x86_64.rpm | 14 kB 00:00 (43/95): patch-2.7.1-8.el7.x86_64.rpm | 110 kB 00:00 (44/95): patchutils-0.3.3-4.el7.x86_64.rpm | 104 kB 00:00 (45/95): perl-Carp-1.26-244.el7.noarch.rpm | 19 kB 00:00 (46/95): perl-Data-Dumper-2.145-3.el7.x86_64.rpm | 47 kB 00:00 (47/95): dyninst-8.2.0-2.el7.x86_64.rpm | 2.5 MB 00:07 (48/95): perl-Encode-2.51-7.el7.x86_64.rpm | 1.5 MB 00:00 (49/95): perl-Exporter-5.68-3.el7.noarch.rpm | 28 kB 00:00 (50/95): perl-File-Path-2.09-2.el7.noarch.rpm | 26 kB 00:00 (51/95): perl-File-Temp-0.23.01-3.el7.noarch.rpm | 56 kB 00:00 (52/95): perl-Error-0.17020-2.el7.noarch.rpm | 32 kB 00:00 (53/95): perl-Filter-1.49-3.el7.x86_64.rpm | 76 kB 00:00 (54/95): perl-5.16.3-285.el7.x86_64.rpm | 8.0 MB 00:02 (55/95): perl-Git-1.8.3.1-4.el7.noarch.rpm | 52 kB 00:00 (56/95): perl-Getopt-Long-2.40-2.el7.noarch.rpm | 56 kB 00:00 (57/95): perl-HTTP-Tiny-0.033-3.el7.noarch.rpm | 38 kB 00:00 (58/95): perl-PathTools-3.40-5.el7.x86_64.rpm | 82 kB 00:00 (59/95): perl-Pod-Escapes-1.04-285.el7.noarch.rpm | 50 kB 00:00 (60/95): perl-Pod-Perldoc-3.20-4.el7.noarch.rpm | 87 kB 00:00 (61/95): perl-Pod-Simple-3.28-4.el7.noarch.rpm | 216 kB 00:00 (62/95): perl-Pod-Usage-1.63-3.el7.noarch.rpm | 27 kB 00:00 (63/95): perl-Scalar-List-Utils-1.27-248.el7.x86_64.rpm | 36 kB 00:00 (64/95): perl-Socket-2.010-3.el7.x86_64.rpm | 49 kB 00:00 (65/95): kernel-headers-3.10.0-229.20.1.el7.x86_64.rpm | 2.3 MB 00:04 (66/95): perl-TermReadKey-2.30-20.el7.x86_64.rpm | 31 kB 00:00 (67/95): perl-Test-Harness-3.28-2.el7.noarch.rpm | 302 kB 00:00 (68/95): perl-Storable-2.45-3.el7.x86_64.rpm | 77 kB 00:00 (69/95): perl-Thread-Queue-3.02-2.el7.noarch.rpm | 17 kB 00:00 (70/95): perl-Text-ParseWords-3.29-4.el7.noarch.rpm | 14 kB 00:00 (71/95): perl-Time-HiRes-1.9725-3.el7.x86_64.rpm | 45 kB 00:00 (72/95): perl-XML-Parser-2.41-10.el7.x86_64.rpm | 223 kB 00:00 (73/95): perl-constant-1.27-2.el7.noarch.rpm | 19 kB 00:00 (74/95): perl-Time-Local-1.2300-2.el7.noarch.rpm | 24 kB 00:00 (75/95): perl-macros-5.16.3-285.el7.x86_64.rpm | 42 kB 00:00 (76/95): perl-libs-5.16.3-285.el7.x86_64.rpm | 687 kB 00:00 (77/95): perl-srpm-macros-1-8.el7.noarch.rpm | 4.6 kB 00:00 (78/95): perl-podlators-2.5.1-3.el7.noarch.rpm | 112 kB 00:00 (79/95): perl-threads-shared-1.43-6.el7.x86_64.rpm | 39 kB 00:00 (80/95): perl-threads-1.87-4.el7.x86_64.rpm | 49 kB 00:00 (81/95): perl-parent-0.225-244.el7.noarch.rpm | 12 kB 00:00 (82/95): kernel-devel-3.10.0-229.20.1.el7.x86_64.rpm | 9.9 MB 00:06 (83/95): redhat-rpm-config-9.1.0-68.el7.centos.noarch.rpm | 77 kB 00:00 (84/95): rcs-5.9.0-5.el7.x86_64.rpm | 230 kB 00:00 (85/95): rpm-sign-4.11.1-25.el7.x86_64.rpm | 42 kB 00:00 (86/95): rpm-build-4.11.1-25.el7.x86_64.rpm | 141 kB 00:00 (87/95): swig-2.0.10-4.el7.x86_64.rpm | 1.3 MB 00:00 (88/95): systemtap-2.6-10.el7_1.x86_64.rpm | 24 kB 00:01 (89/95): subversion-1.7.14-7.el7_1.1.x86_64.rpm | 1.0 MB 00:03 (90/95): subversion-libs-1.7.14-7.el7_1.1.x86_64.rpm | 922 kB 00:03 (91/95): zip-3.0-10.el7.x86_64.rpm | 260 kB 00:00 (92/95): unzip-6.0-15.el7.x86_64.rpm | 166 kB 00:02 (93/95): systemtap-runtime-2.6-10.el7_1.x86_64.rpm | 266 kB 00:03 (94/95): systemtap-devel-2.6-10.el7_1.x86_64.rpm | 1.6 MB 00:08 (95/95): systemtap-client-2.6-10.el7_1.x86_64.rpm | 3.6 MB 00:11 -------------------------------------------------------------------------------- Total 3.4 MB/s | 92 MB 00:27 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : mpfr-3.1.1-4.el7.x86_64 1/95 Installing : libmpc-1.0.1-3.el7.x86_64 2/95 Installing : apr-1.4.8-3.el7.x86_64 3/95 Installing : libquadmath-4.8.3-9.el7.x86_64 4/95 Installing : m4-1.4.16-9.el7.x86_64 5/95 Installing : apr-util-1.5.2-6.el7.x86_64 6/95 Installing : unzip-6.0-15.el7.x86_64 7/95 Installing : zip-3.0-10.el7.x86_64 8/95 Installing : boost-system-1.53.0-23.el7.x86_64 9/95 Installing : patch-2.7.1-8.el7.x86_64 10/95 Installing : boost-thread-1.53.0-23.el7.x86_64 11/95 Installing : libgfortran-4.8.3-9.el7.x86_64 12/95 Installing : cpp-4.8.3-9.el7.x86_64 13/95 Installing : 1:perl-parent-0.225-244.el7.noarch 14/95 Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 15/95 Installing : perl-podlators-2.5.1-3.el7.noarch 16/95 Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 17/95 Installing : perl-Text-ParseWords-3.29-4.el7.noarch 18/95 Installing : 1:perl-Pod-Escapes-1.04-285.el7.noarch 19/95 Installing : perl-Encode-2.51-7.el7.x86_64 20/95 Installing : perl-Pod-Usage-1.63-3.el7.noarch 21/95 Installing : 4:perl-macros-5.16.3-285.el7.x86_64 22/95 Installing : 4:perl-libs-5.16.3-285.el7.x86_64 23/95 Installing : perl-threads-1.87-4.el7.x86_64 24/95 Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 25/95 Installing : perl-Storable-2.45-3.el7.x86_64 26/95 Installing : perl-Filter-1.49-3.el7.x86_64 27/95 Installing : perl-Exporter-5.68-3.el7.noarch 28/95 Installing : perl-constant-1.27-2.el7.noarch 29/95 Installing : perl-Carp-1.26-244.el7.noarch 30/95 Installing : perl-Time-Local-1.2300-2.el7.noarch 31/95 Installing : perl-Socket-2.010-3.el7.x86_64 32/95 Installing : perl-threads-shared-1.43-6.el7.x86_64 33/95 Installing : perl-File-Temp-0.23.01-3.el7.noarch 34/95 Installing : perl-File-Path-2.09-2.el7.noarch 35/95 Installing : perl-PathTools-3.40-5.el7.x86_64 36/95 Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 37/95 Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 38/95 Installing : perl-Getopt-Long-2.40-2.el7.noarch 39/95 Installing : 4:perl-5.16.3-285.el7.x86_64 40/95 Installing : perl-Thread-Queue-3.02-2.el7.noarch 41/95 Installing : 1:perl-Error-0.17020-2.el7.noarch 42/95 Installing : perl-Test-Harness-3.28-2.el7.noarch 43/95 Installing : perl-TermReadKey-2.30-20.el7.x86_64 44/95 Installing : perl-Data-Dumper-2.145-3.el7.x86_64 45/95 Installing : autoconf-2.69-11.el7.noarch 46/95 Installing : automake-1.13.4-3.el7.noarch 47/95 Installing : perl-XML-Parser-2.41-10.el7.x86_64 48/95 Installing : kernel-devel-3.10.0-229.20.1.el7.x86_64 49/95 Installing : gdb-7.6.1-64.el7.x86_64 50/95 Installing : pakchois-0.4-10.el7.x86_64 51/95 Installing : neon-0.30.0-3.el7.x86_64 52/95 Installing : subversion-libs-1.7.14-7.el7_1.1.x86_64 53/95 Installing : dwz-0.11-3.el7.x86_64 54/95 Installing : libgnome-keyring-3.8.0-3.el7.x86_64 55/95 Installing : perl-Git-1.8.3.1-4.el7.noarch 56/95 Installing : git-1.8.3.1-4.el7.x86_64 57/95 Installing : gettext-common-devel-0.18.2.1-4.el7.noarch 58/95 Installing : gettext-devel-0.18.2.1-4.el7.x86_64 59/95 Installing : mokutil-0.7-5.el7.x86_64 60/95 Installing : perl-srpm-macros-1-8.el7.noarch 61/95 Installing : redhat-rpm-config-9.1.0-68.el7.centos.noarch 62/95 Installing : 1:emacs-filesystem-24.3-11.el7.noarch 63/95 Installing : elfutils-0.160-1.el7.x86_64 64/95 Installing : kernel-headers-3.10.0-229.20.1.el7.x86_64 65/95 Installing : glibc-headers-2.17-78.el7.x86_64 66/95 Installing : glibc-devel-2.17-78.el7.x86_64 67/95 Installing : gcc-4.8.3-9.el7.x86_64 68/95 Installing : systemtap-devel-2.6-10.el7_1.x86_64 69/95 Installing : libquadmath-devel-4.8.3-9.el7.x86_64 70/95 Installing : bzip2-1.0.6-12.el7.x86_64 71/95 Installing : libstdc++-devel-4.8.3-9.el7.x86_64 72/95 Installing : libdwarf-20130207-4.el7.x86_64 73/95 Installing : dyninst-8.2.0-2.el7.x86_64 74/95 Installing : systemtap-runtime-2.6-10.el7_1.x86_64 75/95 Installing : systemtap-client-2.6-10.el7_1.x86_64 76/95 Installing : systemtap-2.6-10.el7_1.x86_64 77/95 Installing : gcc-c++-4.8.3-9.el7.x86_64 78/95 Installing : rpm-build-4.11.1-25.el7.x86_64 79/95 Installing : gcc-gfortran-4.8.3-9.el7.x86_64 80/95 Installing : libtool-2.4.2-20.el7.x86_64 81/95 Installing : cscope-15.8-7.el7.x86_64 82/95 Installing : intltool-0.50.2-6.el7.noarch 83/95 Installing : subversion-1.7.14-7.el7_1.1.x86_64 84/95 Installing : patchutils-0.3.3-4.el7.x86_64 85/95 Installing : bison-2.7-4.el7.x86_64 86/95 Installing : flex-2.5.37-3.el7.x86_64 87/95 Installing : rpm-sign-4.11.1-25.el7.x86_64 88/95 Installing : indent-2.2.11-13.el7.x86_64 89/95 Installing : ctags-5.8-13.el7.x86_64 90/95 Installing : byacc-1.9.20130304-3.el7.x86_64 91/95 Installing : rcs-5.9.0-5.el7.x86_64 92/95 Installing : swig-2.0.10-4.el7.x86_64 93/95 Installing : diffstat-1.57-4.el7.x86_64 94/95 Installing : 1:doxygen-1.8.5-3.el7.x86_64 95/95 Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 1/95 Verifying : systemtap-runtime-2.6-10.el7_1.x86_64 2/95 Verifying : libdwarf-20130207-4.el7.x86_64 3/95 Verifying : perl-Test-Harness-3.28-2.el7.noarch 4/95 Verifying : libstdc++-devel-4.8.3-9.el7.x86_64 5/95 Verifying : 1:doxygen-1.8.5-3.el7.x86_64 6/95 Verifying : perl-TermReadKey-2.30-20.el7.x86_64 7/95 Verifying : bzip2-1.0.6-12.el7.x86_64 8/95 Verifying : perl-File-Temp-0.23.01-3.el7.noarch 9/95 Verifying : cscope-15.8-7.el7.x86_64 10/95 Verifying : patch-2.7.1-8.el7.x86_64 11/95 Verifying : glibc-devel-2.17-78.el7.x86_64 12/95 Verifying : perl-Data-Dumper-2.145-3.el7.x86_64 13/95 Verifying : perl-threads-shared-1.43-6.el7.x86_64 14/95 Verifying : subversion-libs-1.7.14-7.el7_1.1.x86_64 15/95 Verifying : apr-util-1.5.2-6.el7.x86_64 16/95 Verifying : 4:perl-macros-5.16.3-285.el7.x86_64 17/95 Verifying : glibc-headers-2.17-78.el7.x86_64 18/95 Verifying : patchutils-0.3.3-4.el7.x86_64 19/95 Verifying : neon-0.30.0-3.el7.x86_64 20/95 Verifying : 4:perl-5.16.3-285.el7.x86_64 21/95 Verifying : autoconf-2.69-11.el7.noarch 22/95 Verifying : intltool-0.50.2-6.el7.noarch 23/95 Verifying : perl-File-Path-2.09-2.el7.noarch 24/95 Verifying : kernel-headers-3.10.0-229.20.1.el7.x86_64 25/95 Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 26/95 Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 27/95 Verifying : diffstat-1.57-4.el7.x86_64 28/95 Verifying : swig-2.0.10-4.el7.x86_64 29/95 Verifying : bison-2.7-4.el7.x86_64 30/95 Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 31/95 Verifying : perl-XML-Parser-2.41-10.el7.x86_64 32/95 Verifying : elfutils-0.160-1.el7.x86_64 33/95 Verifying : rcs-5.9.0-5.el7.x86_64 34/95 Verifying : libtool-2.4.2-20.el7.x86_64 35/95 Verifying : libmpc-1.0.1-3.el7.x86_64 36/95 Verifying : perl-Pod-Usage-1.63-3.el7.noarch 37/95 Verifying : perl-Encode-2.51-7.el7.x86_64 38/95 Verifying : perl-threads-1.87-4.el7.x86_64 39/95 Verifying : flex-2.5.37-3.el7.x86_64 40/95 Verifying : 1:emacs-filesystem-24.3-11.el7.noarch 41/95 Verifying : 4:perl-libs-5.16.3-285.el7.x86_64 42/95 Verifying : boost-thread-1.53.0-23.el7.x86_64 43/95 Verifying : perl-Git-1.8.3.1-4.el7.noarch 44/95 Verifying : systemtap-2.6-10.el7_1.x86_64 45/95 Verifying : perl-Storable-2.45-3.el7.x86_64 46/95 Verifying : m4-1.4.16-9.el7.x86_64 47/95 Verifying : byacc-1.9.20130304-3.el7.x86_64 48/95 Verifying : libgfortran-4.8.3-9.el7.x86_64 49/95 Verifying : 1:perl-Pod-Escapes-1.04-285.el7.noarch 50/95 Verifying : 1:perl-parent-0.225-244.el7.noarch 51/95 Verifying : systemtap-devel-2.6-10.el7_1.x86_64 52/95 Verifying : perl-srpm-macros-1-8.el7.noarch 53/95 Verifying : mokutil-0.7-5.el7.x86_64 54/95 Verifying : boost-system-1.53.0-23.el7.x86_64 55/95 Verifying : gettext-common-devel-0.18.2.1-4.el7.noarch 56/95 Verifying : subversion-1.7.14-7.el7_1.1.x86_64 57/95 Verifying : libgnome-keyring-3.8.0-3.el7.x86_64 58/95 Verifying : perl-podlators-2.5.1-3.el7.noarch 59/95 Verifying : zip-3.0-10.el7.x86_64 60/95 Verifying : mpfr-3.1.1-4.el7.x86_64 61/95 Verifying : dyninst-8.2.0-2.el7.x86_64 62/95 Verifying : perl-Filter-1.49-3.el7.x86_64 63/95 Verifying : dwz-0.11-3.el7.x86_64 64/95 Verifying : pakchois-0.4-10.el7.x86_64 65/95 Verifying : libquadmath-4.8.3-9.el7.x86_64 66/95 Verifying : ctags-5.8-13.el7.x86_64 67/95 Verifying : kernel-devel-3.10.0-229.20.1.el7.x86_64 68/95 Verifying : automake-1.13.4-3.el7.noarch 69/95 Verifying : perl-Exporter-5.68-3.el7.noarch 70/95 Verifying : perl-constant-1.27-2.el7.noarch 71/95 Verifying : perl-PathTools-3.40-5.el7.x86_64 72/95 Verifying : perl-Carp-1.26-244.el7.noarch 73/95 Verifying : gcc-gfortran-4.8.3-9.el7.x86_64 74/95 Verifying : libquadmath-devel-4.8.3-9.el7.x86_64 75/95 Verifying : apr-1.4.8-3.el7.x86_64 76/95 Verifying : gdb-7.6.1-64.el7.x86_64 77/95 Verifying : perl-Thread-Queue-3.02-2.el7.noarch 78/95 Verifying : cpp-4.8.3-9.el7.x86_64 79/95 Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 80/95 Verifying : perl-Time-Local-1.2300-2.el7.noarch 81/95 Verifying : git-1.8.3.1-4.el7.x86_64 82/95 Verifying : systemtap-client-2.6-10.el7_1.x86_64 83/95 Verifying : perl-Socket-2.010-3.el7.x86_64 84/95 Verifying : gcc-c++-4.8.3-9.el7.x86_64 85/95 Verifying : rpm-build-4.11.1-25.el7.x86_64 86/95 Verifying : 1:perl-Error-0.17020-2.el7.noarch 87/95 Verifying : indent-2.2.11-13.el7.x86_64 88/95 Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 89/95 Verifying : unzip-6.0-15.el7.x86_64 90/95 Verifying : gettext-devel-0.18.2.1-4.el7.x86_64 91/95 Verifying : gcc-4.8.3-9.el7.x86_64 92/95 Verifying : perl-Getopt-Long-2.40-2.el7.noarch 93/95 Verifying : redhat-rpm-config-9.1.0-68.el7.centos.noarch 94/95 Verifying : rpm-sign-4.11.1-25.el7.x86_64 95/95 Installed: autoconf.noarch 0:2.69-11.el7 automake.noarch 0:1.13.4-3.el7 bison.x86_64 0:2.7-4.el7 byacc.x86_64 0:1.9.20130304-3.el7 cscope.x86_64 0:15.8-7.el7 ctags.x86_64 0:5.8-13.el7 diffstat.x86_64 0:1.57-4.el7 doxygen.x86_64 1:1.8.5-3.el7 elfutils.x86_64 0:0.160-1.el7 flex.x86_64 0:2.5.37-3.el7 gcc.x86_64 0:4.8.3-9.el7 gcc-c++.x86_64 0:4.8.3-9.el7 gcc-gfortran.x86_64 0:4.8.3-9.el7 git.x86_64 0:1.8.3.1-4.el7 indent.x86_64 0:2.2.11-13.el7 intltool.noarch 0:0.50.2-6.el7 libtool.x86_64 0:2.4.2-20.el7 patch.x86_64 0:2.7.1-8.el7 patchutils.x86_64 0:0.3.3-4.el7 rcs.x86_64 0:5.9.0-5.el7 redhat-rpm-config.noarch 0:9.1.0-68.el7.centos rpm-build.x86_64 0:4.11.1-25.el7 rpm-sign.x86_64 0:4.11.1-25.el7 subversion.x86_64 0:1.7.14-7.el7_1.1 swig.x86_64 0:2.0.10-4.el7 systemtap.x86_64 0:2.6-10.el7_1 Dependency Installed: apr.x86_64 0:1.4.8-3.el7 apr-util.x86_64 0:1.5.2-6.el7 boost-system.x86_64 0:1.53.0-23.el7 boost-thread.x86_64 0:1.53.0-23.el7 bzip2.x86_64 0:1.0.6-12.el7 cpp.x86_64 0:4.8.3-9.el7 dwz.x86_64 0:0.11-3.el7 dyninst.x86_64 0:8.2.0-2.el7 emacs-filesystem.noarch 1:24.3-11.el7 gdb.x86_64 0:7.6.1-64.el7 gettext-common-devel.noarch 0:0.18.2.1-4.el7 gettext-devel.x86_64 0:0.18.2.1-4.el7 glibc-devel.x86_64 0:2.17-78.el7 glibc-headers.x86_64 0:2.17-78.el7 kernel-devel.x86_64 0:3.10.0-229.20.1.el7 kernel-headers.x86_64 0:3.10.0-229.20.1.el7 libdwarf.x86_64 0:20130207-4.el7 libgfortran.x86_64 0:4.8.3-9.el7 libgnome-keyring.x86_64 0:3.8.0-3.el7 libmpc.x86_64 0:1.0.1-3.el7 libquadmath.x86_64 0:4.8.3-9.el7 libquadmath-devel.x86_64 0:4.8.3-9.el7 libstdc++-devel.x86_64 0:4.8.3-9.el7 m4.x86_64 0:1.4.16-9.el7 mokutil.x86_64 0:0.7-5.el7 mpfr.x86_64 0:3.1.1-4.el7 neon.x86_64 0:0.30.0-3.el7 pakchois.x86_64 0:0.4-10.el7 perl.x86_64 4:5.16.3-285.el7 perl-Carp.noarch 0:1.26-244.el7 perl-Data-Dumper.x86_64 0:2.145-3.el7 perl-Encode.x86_64 0:2.51-7.el7 perl-Error.noarch 1:0.17020-2.el7 perl-Exporter.noarch 0:5.68-3.el7 perl-File-Path.noarch 0:2.09-2.el7 perl-File-Temp.noarch 0:0.23.01-3.el7 perl-Filter.x86_64 0:1.49-3.el7 perl-Getopt-Long.noarch 0:2.40-2.el7 perl-Git.noarch 0:1.8.3.1-4.el7 perl-HTTP-Tiny.noarch 0:0.033-3.el7 perl-PathTools.x86_64 0:3.40-5.el7 perl-Pod-Escapes.noarch 1:1.04-285.el7 perl-Pod-Perldoc.noarch 0:3.20-4.el7 perl-Pod-Simple.noarch 1:3.28-4.el7 perl-Pod-Usage.noarch 0:1.63-3.el7 perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 perl-Socket.x86_64 0:2.010-3.el7 perl-Storable.x86_64 0:2.45-3.el7 perl-TermReadKey.x86_64 0:2.30-20.el7 perl-Test-Harness.noarch 0:3.28-2.el7 perl-Text-ParseWords.noarch 0:3.29-4.el7 perl-Thread-Queue.noarch 0:3.02-2.el7 perl-Time-HiRes.x86_64 4:1.9725-3.el7 perl-Time-Local.noarch 0:1.2300-2.el7 perl-XML-Parser.x86_64 0:2.41-10.el7 perl-constant.noarch 0:1.27-2.el7 perl-libs.x86_64 4:5.16.3-285.el7 perl-macros.x86_64 4:5.16.3-285.el7 perl-parent.noarch 1:0.225-244.el7 perl-podlators.noarch 0:2.5.1-3.el7 perl-srpm-macros.noarch 0:1-8.el7 perl-threads.x86_64 0:1.87-4.el7 perl-threads-shared.x86_64 0:1.43-6.el7 subversion-libs.x86_64 0:1.7.14-7.el7_1.1 systemtap-client.x86_64 0:2.6-10.el7_1 systemtap-devel.x86_64 0:2.6-10.el7_1 systemtap-runtime.x86_64 0:2.6-10.el7_1 unzip.x86_64 0:6.0-15.el7 zip.x86_64 0:3.0-10.el7 Complete! [root@centos-512mb-sgp1-01 tmp]# |
待っていればインストールしてくれます。本当に便利ですね
早速SoftEtherをインストールしていきます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[root@centos-512mb-sgp1-01 tmp]# cd vpnserver/ [root@centos-512mb-sgp1-01 vpnserver]# ls Authors.txt ReadMeFirst_Important_Notices_cn.txt code ReadMeFirst_Important_Notices_en.txt hamcore.se2 ReadMeFirst_Important_Notices_ja.txt lib ReadMeFirst_License.txt Makefile [root@centos-512mb-sgp1-01 vpnserver]# make -------------------------------------------------------------------- SoftEther VPN Server (Ver 4.18, Build 9570, Intel x64 / AMD64) for Linux Install Utility Copyright (c) SoftEther Project at University of Tsukuba, Japan. All Rights Reserved. -------------------------------------------------------------------- Do you want to read the License Agreement for this software ? 1. Yes 2. No Please choose one of above number: |
Yesなので1を入力して進めます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
Please choose one of above number: 1 SoftEther VPN Server, Client and Bridge are free software, and released as open-source. You can redistribute them and/or modify them under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Copyright (c) 2012-2015 Daiyuu Nobori. Copyright (c) 2012-2015 SoftEther Project at University of Tsukuba, Japan. Copyright (c) 2012-2015 SoftEther Corporation. All Rights Reserved. http://www.softether.org/ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License version 2 along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Neither the name of SoftEther nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. THIS SOFTWARE IS DEVELOPED IN JAPAN, AND DISTRIBUTED FROM JAPAN, UNDER JAPANESE LAWS. YOU MUST AGREE IN ADVANCE TO USE, COPY, MODIFY, MERGE, PUBLISH, DISTRIBUTE, SUBLICENSE, AND/OR SELL COPIES OF THIS SOFTWARE, THAT ANY JURIDICAL DISPUTES WHICH ARE CONCERNED TO THIS SOFTWARE OR ITS CONTENTS, AGAINST US (SOFTETHER PROJECT, SOFTETHER CORPORATION, DAIYUU NOBORI OR OTHER SUPPLIERS), OR ANY JURIDICAL DISPUTES AGAINST US WHICH ARE CAUSED BY ANY KIND OF USING, COPYING, MODIFYING, MERGING, PUBLISHING, DISTRIBUTING, SUBLICENSING, AND/OR SELLING COPIES OF THIS SOFTWARE SHALL BE REGARDED AS BE CONSTRUED AND CONTROLLED BY JAPANESE LAWS, AND YOU MUST FURTHER CONSENT TO EXCLUSIVE JURISDICTION AND VENUE IN THE COURTS SITTING IN TOKYO, JAPAN. YOU MUST WAIVE ALL DEFENSES OF LACK OF PERSONAL JURISDICTION AND FORUM NON CONVENIENS. PROCESS MAY BE SERVED ON EITHER PARTY IN THE MANNER AUTHORIZED BY APPLICABLE LAW OR COURT RULE. USE ONLY IN JAPAN. DO NOT USE IT IN OTHER COUNTRIES. IMPORTING THIS SOFTWARE INTO OTHER COUNTRIES IS AT YOUR OWN RISK. SOME COUNTRIES PROHIBIT ENCRYPTED COMMUNICATIONS. USING THIS SOFTWARE IN OTHER COUNTRIES MIGHT BE RESTRICTED. THE FOLLOWING GPLV2 CONDITIONS APPLY ON ALL SOFTETHER VPN PROGRAMS WHICH ARE DEVELOPED BY SOFTETHER VPN PROJECT. GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Note that the above copyright notices and use conditions do not apply on the software components listed in below which are included in this Software. When you use or distribute Software with including these libraries, you have to follow the conditions of these libraries. These library's copyright notices and conditions are following; ------------------- BitVisor(R) VPN Client Module (IPsec Driver): Copyright (c) 2007, 2008 University of Tsukuba. Copyright (C) 2007, 2008 National Institute of Information and Communications Technology. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the University of Tsukuba nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------- Microsoft(R) C Runtime Library: (c) 2007 Microsoft Corporation. All Rights Reserved. ------------------- RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki): License to copy and use this software is granted provided that it is identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing this software. License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing the derived work. RSA Security Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is pro |