JDK16
Добавлено: 2011-02-04 10:48:20
Добровго времени суток.
Решил установить из портов JDK16 но в момент соглашения с лицензией процесс подвисает..
Версия дистрибутива
Проблемный участок установки
скрипт лицензии
В чем может быть проблема ?? и как ее решить??
Решил установить из портов JDK16 но в момент соглашения с лицензией процесс подвисает..
Версия дистрибутива
Код: Выделить всё
[root@freebsd2 /usr/ports/java/jdk16]# uname -a
FreeBSD freebsd2.wdc 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
Код: Выделить всё
[root@freebsd2 /usr/ports/java/jdk16]# make install clean
===> Vulnerability check disabled, database not found
===> License check disabled, port has not defined LICENSE
===> Found saved configuration for jdk-1.6.0.3p4_15
IMPORTANT: To build the JDK 1.6.0 port, you should have at least
2.5Gb of free disk space in the build area!
===> Extracting for jdk-1.6.0.3p4_15
=> MD5 Checksum OK for jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar.
=> SHA256 Checksum OK for jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar.
=> MD5 Checksum OK for jdk-6u3-fcs-bin-b05-jrl-24_sep_2007.jar.
=> SHA256 Checksum OK for jdk-6u3-fcs-bin-b05-jrl-24_sep_2007.jar.
=> MD5 Checksum OK for jdk-6u3-fcs-mozilla_headers-b05-unix-24_sep_2007.jar.
=> SHA256 Checksum OK for jdk-6u3-fcs-mozilla_headers-b05-unix-24_sep_2007.jar.
=> MD5 Checksum OK for bsd-jdk16-patches-4.tar.bz2.
=> SHA256 Checksum OK for bsd-jdk16-patches-4.tar.bz2.
=> MD5 Checksum OK for tzupdater-1_3_29-2010f.zip.
=> SHA256 Checksum OK for tzupdater-1_3_29-2010f.zip.
===> jdk-1.6.0.3p4_15 depends on file: /usr/local/bin/unzip - found
/bin/sh /usr/ports/java/jdk16/files/license.sh
JAVA RESEARCH LICENSE
Version 1.6
.....
Текст лицензии
......
Do you agree to the above license terms? [yes or no]
Yes
Код: Выделить всё
#!/bin/sh
# $FreeBSD: ports/java/jdk16/files/license.sh,v 1.1 2007/08/14 03:36:15 glewis Exp $
# License agreement
more << EOF_LICENSE
JAVA RESEARCH LICENSE
Version 1.6
.....
Текст лицензии
......
EOF_LICENSE
agreed=
while [ x$agreed = x ]; do
echo
echo "Do you agree to the above license terms? [yes or no] "
read reply leftover
case $reply in
y* | Y*)
agreed=1
;;
n* | n*)
echo
echo "If you don't agree to the license you can't build this software"
exit 1
;;
esac
done