我已经在 VirtualBox 上安装了 Debian 8(来自 live debian-live-8.7.1-i386-xfce-desktop.iso)。
我正在尝试执行此处描述的所有步骤https://wiki.draglet.com/index.php/Manual:Installation_manual
在这一步中,运行 draglet 需要以下 Debian 8 软件包:
apt-get install exim4 ntp pwgen curl php5-dev php-pear pkg-config nmap libzmq3 libzmq3-dev libapache2-mod-php5 apache2 percona-server-server-5.6 php5-cli php5-mysql php5-curl php5-intl daemontools-run oracle-java8-installer ant ruby-compass libtool-bin
Run Code Online (Sandbox Code Playgroud)
当我执行这个命令时,我得到了输出
找不到包裹
.... 我收到此消息用于ntp,pwgen和其他包。
我该如何安装它们?
有人可以解释以下内容吗?我有代码:
@Entity
public class Model {
@Id
@GeneratedValue(strategy = AUTO)
@Column
private long id;
@Column(length = 200, nullable = false)
private String field0;
@Column(length = 200, nullable = false)
private String field1;
@Column(length = 200, nullable = false)
private String field2;
@Column(length = 200, nullable = false)
private String field3;
@Column(length = 200, nullable = false)
private String field4;
@Column(length = 200, nullable = false)
private String field5;
@Column(length = 200, nullable = false)
private String field6;
@Column(length = 200, …Run Code Online (Sandbox Code Playgroud)