摘要:
服务器ssh安全配置 新增用户 #-m创建用户目录 useradd -m wilwei 设置修改密码 passwd wilwei 为用户指定shell usermod -s /bin/bash wilwei 为用户指定登录默认目录 usermod -d /app wilwei bashrc失效问题, 阅读全文
摘要:
Terminal 阅读全文
摘要:
java selectionSort java public class SelectionSort { public static void main(String[] args) { int[] arr = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}; selectionSo 阅读全文
摘要:
使用wait,notify实现 java public class Test { public synchronized void a() { for (int i = 1; i 阅读全文
摘要:
Navicat 连接 Oracle ORA 28547:connection to server failed, probable Oracle Net admin error Navicat for Oracle Cannot create oci environment oracle libra 阅读全文
摘要:
```java public class A { private Deque list = new LinkedList(); private int max = 10; private int size = 0; public synchronized int consumer() { Syste 阅读全文
摘要:
记录下 阅读全文
摘要:
```java public class Q { public static void main(String[] args) throws Exception { DelayQueue orders = new DelayQueue(); Order order1 = new Order(1000, "1x"); Order order2 ... 阅读全文
摘要:
```sql 插入空间数据 INSERT INTO VALUES ('1', '北京', POINT(116.401394,39.916042)); INSERT INTO VALUES ('2', '广州', ST_GEOMFROMTEXT('POINT(113.295701 23.008163) 阅读全文
摘要:
1. 配置网卡: 修改 ,`ONBOOT=yes`。 2. 保存后重启网卡 3. 安装 pd tools /dev/sr0 写保护,将以只读方式挂载 提示错误,缺少包,安装所需要的包。( 有网可以在线自动下载 ) 依赖的组件安装完成后,执行 install 继续安装 Parallels Tools。 阅读全文