logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

dpkg: 处理软件包lvm2 (--configure)时出错解决方法

问题ubuntu18下升级之后,虚拟机vmare无法使用,日志如下:dpkg: 处理软件包lvm2 (--configure)时出错 ...解决方案执行以下步骤即可:# 切换到root用户> su -// 备份一下.> mv /var/lib/dpkg/info/var/lib/dpkg/info_bak> mkdir /var/lib/dp...

#linux
linux 下 npm安装依赖报:stack Error: `gyp` failed with exit code: 1

解决办法切换到当前项目下即可。> rm -rf .node-gyp/> npm i -g node-gyp> rm -rf 项目/node_modules> npm i -d

nvm的详细使用(Linux)

1. 安装curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash2. nvm命令查看远程node版本nvm ls-remote列出所有安装的版本nvm ls安装最新稳定版 nodenvm install stable安装指定版本nvm in...

git暂存操作

6. Git如何在不提交当前分支的情况下切换到其它分支进行操作储存当前分支的修改git stash查看储存的修改信心git stash list恢复stash的修改方法一:git stash apply//但是恢复后,stash内容并不删除,这时候再执行git stash list 命令,id 为xxx的储藏项目还会在列表中,你需要用git stash drop ...

#git
mysql之备份与恢复

1、利用select into outfile实现数据的备份与还原select * from students where Age > 30 into outfile ‘/tmp/stud.txt' ;备份select * into outfile 'tmp/t1.txt'fields terminated by ',' optionally enclosed by '*...

#mysql
cassandra数据库的常用命令

连接cassandracqlsh 192.168.6.202cqlsh -u 'cassandra' -p 'cassandra'查看表空间describe keyspaces;describe keyspace {keyspace};查看已有表describe tables;查看表结构describe table table_name;Cassandra 提供了三...

到底了