- 博客(13)
- 收藏
- 关注
原创 vmware配置net网络
一、配置网络共享机制1、在右下角“无线网”右击,打开“网络和Internet设置”;2、点击“更改适配器选项”;3、找到“WLAN”右击选择“属性”,接着点击共享-->勾选“允许其他网络用户通过此计算机的Internet连接来连接(N)-->点击下拉菜单选择“VMware Network Adapter VNnet8”-->点击“确定”;二、配置物理机的NET8网络属性4、通过cmd命令提示符,查看自己电脑的网络配置,我的物理机是“无线局域网适配器 WLAN:”,IPv
2020-11-26 21:33:19
1891
1
原创 centos7挂载移动硬盘(简单易操作)
1. 下载ntfs-3gntfs-3g下载地址:http://www.linuxfromscratch.org/blfs/view/svn/postlfs/ntfs-3g.html2. 上传到centos中,并且解压。tar -zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz3. 进入ntfs-3g_ntfprogs-2014.2.25目录,然后执行安装...
2019-08-13 13:58:53
3139
原创 解决:The dependencies of some of the beans in the application context form a cycle:
如果使用idea启动springboot项目,报如下错误(可惜我的错误没有了,这是复制别人的):The dependencies of some of the beans in the application context form a cycle: dubboEntAdminRpcService (field private io.newbanker.modules.enterp...
2019-07-09 09:37:11
33720
2
转载 centos7挂载移动硬盘
第一步: 安装ntfs-3g因为移动硬盘是NTFS的文件系统,所以centos 7.0不识别这文件系统,所以安装ntfs-3g.1. 下载ntfs-3gntfs-3g下载地址:http://www.linuxfromscratch.org/blfs/view/svn/postlfs/ntfs-3g.html2. 上传到centos中,并且解压。tar -zxvf ntfs-3g...
2019-06-14 15:23:03
6319
1
原创 安装docker后,vmware连接不了网络
说明:我的主机是win10专业版,vmware安装的CentOS7.3安装docker后,vmware连接不了网络了,What,我 怎么办我怎么办我怎么办?也在网上搜了一些解决方法也还是不行,后来我都尝试了,最后行了,现记录一下,为以后的朋友解决同样的问题。第一步:当然了,我的第一个想法就是把docker卸载,因为vmware对我来说更重要。第二步:修改网络配置2.1 在桌面网络处...
2019-06-05 21:45:21
3203
原创 使用nltk时,Resource punkt not found的时候解决方法
1.Resource punkt not found.Please use the NLTK Downloader to obtain the resource:解决办法:import nltknltk.download('punkt')2.Resource stopwords not found.Please use the NLTK Downloader to obtai...
2019-05-06 10:46:08
10146
2
原创 Eclipse创建的项目中没有Deployment Descriptor:XXX怎么办
1.今天使用eclipse新建了一个maven的web项目,竟然没有Deployment Descriptor:,What?对于一个Java新手来说,我怎么办,左思右想,右想左思,这点一下那点一下,终于在右上角点击J2EE视图,就有了,然后恍然大悟......详见下面两张图图1:图2:...
2019-04-24 15:20:32
11927
9
原创 mysql统计多张表中的总数
需求:mysql统计多张表中的总数因为需求不明确,答案有三种:答案1:select sum(a) from (select count(*) a from tb1 union select count(*) a from tb2 union select count(*) a from tb3) as tb;答案2:select count(*) a from tb1...
2018-12-21 10:20:01
14817
4
原创 CentOS7创建桌面快捷方式
1.在/home/lcy/Desktop/目录下,根据自己的桌面路径,创建eclipse桌面文件:vim eclipse.desktop(如:vim /home/lcy/Desktop/eclipse.desktop)2.添加以下内容:#!/usr/bin/env xdg-open[Desktop Entry]Version=jeeEncoding=UTF-8Name=ecli...
2018-10-30 14:09:09
549
原创 js如何获取html中输入框中的内容?
获取文本框的内容有以下两类方法:首先假设文本框如下: <input type="text" value="" id="textId" class="textClass" name="textName">1.用js获取文本框的值:(推荐使用方法1) 方法1:var value =document.getElementById("textId").va...
2018-02-24 17:52:27
54054
3
转载 Maven中央仓库地址(实用版)
最近做项目的时候,一直发现常用的oschina maven源一直都没有反应,后面发现原来oschina竟然关闭了maven源服务,后面经同事推荐了阿里云的maven源,这速度杠杠的Maven 中央仓库地址:1、http://www.sonatype.org/nexus/ 私服nexus工具使用2、http://mvnrepository.com/ (推荐)3、ht
2018-02-01 20:11:53
43535
转载 Host is not allowed to connect to this MySQL server解决方法
今天在Linux上面装完MySQL,却发现在本地登录可以,但是远程登录却报错Host is not allowed to connect to this MySQL server,找了半天试了网上的一些方法都没有解决,最终在一篇文章里找到了解决方法,特意记录一下。先说说这个错误,其实就是我们的MySQL不允许远程登录,所以远程登录失败了,解决方法如下:在装有MySQL的机器上登录MyS
2018-01-23 13:10:30
24145
7
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人