03 2020 档案

摘要:在有网络的情况下: 1、包管理器安装 centos 中用 yum -y install tree ubuntu 中用 apt-get install tree 当然如果需要权限不要忘了在前面加上 sudo 2、源码编译安装 wget ftp://mama.indstate.edu/linux/tre 阅读全文
posted @ 2020-03-28 23:59 尐鱼儿 阅读(1032) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_39314099/article/details/100575935 在虚拟机中查看安装的linux时间,总是不对,于是查阅资料,有很多解决办法,我个人比较倾向于用ntpdate的方式更新时间。 感觉比较好用的一个方法: 输入date查看时间,发现不 阅读全文
posted @ 2020-03-28 16:09 尐鱼儿 阅读(11984) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/EasonJim/p/8171093.html 阅读全文
posted @ 2020-03-28 13:45 尐鱼儿 阅读(198) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/fun0623/p/4370507.html 阅读全文
posted @ 2020-03-28 13:44 尐鱼儿 阅读(190) 评论(0) 推荐(0) 编辑
摘要:centOS 7里面,setup已经没有网络设置的功能了。要进行网络配置,要使用nmtui命令。还有centOS 7里的网卡名默认是eno16777736。 因为我们下载的是centOS 7,所以网卡名不是eth0,你的好像没有,默认是eno16777736。还有在用XShell连接centOS前要 阅读全文
posted @ 2020-03-28 13:27 尐鱼儿 阅读(1613) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/fbcb83be0c19 https://blog.csdn.net/lamp_yang_3533/article/details/53274868 https://jingyan.baidu.com/article/25648fc1a303ce9 阅读全文
posted @ 2020-03-28 13:10 尐鱼儿 阅读(362) 评论(0) 推荐(0) 编辑
摘要:https://jingyan.baidu.com/article/ce43664957fbea3773afd3b9.html 阅读全文
posted @ 2020-03-28 13:04 尐鱼儿 阅读(196) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/mrgavin/p/11237149.html 阅读全文
posted @ 2020-03-28 13:00 尐鱼儿 阅读(787) 评论(0) 推荐(0) 编辑
摘要:MySQL数据库事务的隔离级别 阅读全文
posted @ 2020-03-18 15:01 尐鱼儿 阅读(75) 评论(0) 推荐(0) 编辑
摘要:JavaScript的运算符优先级 阅读全文
posted @ 2020-03-18 14:59 尐鱼儿 阅读(85) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_43394859/article/details/103896728 阅读全文
posted @ 2020-03-12 19:33 尐鱼儿 阅读(790) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/sinoaccer/p/12403631.html 阅读全文
posted @ 2020-03-12 18:58 尐鱼儿 阅读(188) 评论(0) 推荐(0) 编辑
摘要:http://www.360doc.com/content/19/0821/01/40899333_856142900.shtml 阅读全文
posted @ 2020-03-12 18:38 尐鱼儿 阅读(432) 评论(0) 推荐(0) 编辑
摘要:Centos8和7的区别(参照redhat) https://www.cnblogs.com/iwalkman/p/11781234.html 阅读全文
posted @ 2020-03-12 12:39 尐鱼儿 阅读(240) 评论(0) 推荐(0) 编辑
摘要:http://mini.eastday.com/bdmip/190522180221360.html# 阅读全文
posted @ 2020-03-12 12:24 尐鱼儿 阅读(463) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/27a742e349f7 https://blog.csdn.net/cenmeng8703/article/details/100959467 阅读全文
posted @ 2020-03-10 16:28 尐鱼儿 阅读(91) 评论(0) 推荐(0) 编辑
摘要:SELECT orders.*,items.* FROM orders,orders_items_relation,items WHERE orders.orders_id=orders_items_relation.orders_id AND orders_items_relation.items 阅读全文
posted @ 2020-03-05 22:30 尐鱼儿 阅读(96) 评论(0) 推荐(0) 编辑
摘要:mybatis中LIKE模糊查询的几种写法以及注意点 https://blog.csdn.net/zhenwei1994/article/details/81876278 预处理prepareStatement是怎么防止sql注入漏洞的? https://www.cnblogs.com/yaochc 阅读全文
posted @ 2020-03-03 13:18 尐鱼儿 阅读(306) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/149087.htm 阅读全文
posted @ 2020-03-03 13:16 尐鱼儿 阅读(128) 评论(0) 推荐(0) 编辑
摘要:使用Springboot框架login_name LIKE CONCAT('%',#{loginName},'%') 查询无结果,但是在数据库执行sql能查询出结果 解决办法:在数据库url加上编码方式characterEncoding=utf8解决问题 spring.datasource.url= 阅读全文
posted @ 2020-03-03 13:10 尐鱼儿 阅读(378) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/shuzhikang/article/details/80953707 https://blog.csdn.net/y912423222/article/details/82147200 阅读全文
posted @ 2020-03-02 15:42 尐鱼儿 阅读(78) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_40283570/article/details/93998692 https://blog.csdn.net/lazypawn/article/details/92840766 https://www.jianshu.com/p/5905f 阅读全文
posted @ 2020-03-02 14:09 尐鱼儿 阅读(65) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2020-03-02 13:35 尐鱼儿 阅读(0) 评论(0) 推荐(0) 编辑
摘要:题目描述: 输入的第一行为n(n<40),表示有n个同学,接下来的n行每行有4个输入,分别为该学生的名字,语、数、外成绩,请按照排序规则对学生进行排序,规则如下: 1、总成绩高的排在前面 2、总成绩相同的情况下,语文成绩高的排在前面。 3、在总成绩,语文成绩都相同的情况下,数学成绩高的排在前面。 4 阅读全文
posted @ 2020-03-01 23:46 尐鱼儿 阅读(132) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示