linux
向前看sf→→→
这个作者很懒,什么都没留下…
展开
-
Byte和bit的区别
很多人刚开始分不清这两个的关系,其实可以从首字母的大小写来方便记忆我们常见的都是Byte(字节),B为大写,而bit(比特)的b为小写。1Byte=8bit原创 2021-07-31 09:41:15 · 359 阅读 · 0 评论 -
Ubuntu与Windows文件互传
最近手上有两台电脑,一台是Ubuntu系统,一台是windows系统。经常要在电脑之间文件互传,所以可以参考以下方法:1.在windows上下载filezilla软件,安装好2.在Ubuntu界面安装ssh:命令:sudo apt install openssh-server3.打开Ubuntu系统的电脑,通过ifconfig | grep inet命令查询ip4.在windows的filezilla界面中输入ip、用户名、密码,可以不用写端口,一般要写就写22连接成功...原创 2021-02-28 18:12:07 · 618 阅读 · 2 评论 -
Ubuntu错误 CMAKE_CXX_COMPILER NOT FOUND
1.sudo apt-get update2.sudo apt-get install g++原创 2020-12-16 22:34:38 · 1418 阅读 · 0 评论 -
成功解决github无法显示图片问题
在C:\Windows\System32\drivers\etc\hosts文件的末尾添加:# GitHub Start 192.30.253.112 Build software better, together 192.30.253.119 gist.github.com151.101.184.133 assets-cdn.github.com151.101.184.133 raw.githubusercontent.com151.101.184.133 g原创 2020-12-11 13:45:53 · 350 阅读 · 0 评论 -
ubuntu的显卡驱动更新
链接转载 2020-07-17 16:17:23 · 307 阅读 · 0 评论 -
(简单)访问服务器的jupyter notebook
当我们需要在本地访问远程服务器的jupyter时,只需在本地完成以下操作:1:本地登录远程服务器(Ubuntu系统为例):ssh ***@ip ***是服务器用户名,IP是服务器的ip2:安装jupyter notebook,pip install jupyter3:打开python输入:from notebook.auth import passwdpasswd()...原创 2019-12-20 14:46:12 · 144 阅读 · 0 评论 -
在ubuntu上卸载anaconda
在ubuntu上卸载anaconda的步骤 :(一)删除整个anaconda目录:由于Anaconda的安装文件都包含在一个目录中,所以直接将该目录删除即可。到包含整个anaconda目录的文件夹下,删除整个Anaconda目录:rm -rf anaconda文件夹名(二)建议清理下.bashrc中的Anaconda路径:1.到根目录下,打开终端并输入:...转载 2019-10-12 11:12:02 · 1458 阅读 · 0 评论 -
linux命令下的硬盘弹出
用命令弹出硬盘:1.输入:umount /dev/sdd2 ----->这里的/dev/sdd2是硬盘的挂载点,,可以通过fdisk -l来查询挂载点2.若显示(In some cases useful info about processes thatuse the device is found by lsof(8) or fuser(1).),说明还有设备在使...原创 2019-09-25 14:55:06 · 6661 阅读 · 0 评论 -
Ubuntu安装anaconda
1.去官网下载anaconda的linux版本,下载下来是Anaconda3-2019.07-Linux-x86.sh2.在终端界面找到anaconda安装包的路径,输入bash ./Anaconda3-5.2.0-Linux-x86_64.sh3.每一步都按enter建,直到出现Do you accept the license terms? [yes|no](你接受许可证条款吗?)...原创 2019-09-28 22:08:34 · 624 阅读 · 0 评论