相关文章
window 7下用U盘安装ubuntu14.04双系统
【一】前期准备: 1、大于2G的U盘一个 2、已下载好的Ubuntu系统镜像(注意32和64位的选择,如果上述网站没有则可以去ubuntu官网下载) 3、已安装好UltraISO软件(或者是PowerISO软件) 4、打算安装Ubuntu的电脑(我的电脑已安装好64位Win7系统) 【二】UItralS…
建站知识
2025/1/23 9:12:58
Ubuntu18 安装python3.7及多版本切换
1.安装3.7 添加源 sudo add-apt-repository ppa:deadsnakes/ppa 检查更新 sudo apt-get update 安装python3.7 sudo apt-get install python3.7 2.使用 update-alternatives 来为整个系统更改Python 版本 查看python替代版本信息 ~$ update-alternatives --display python 但是…
建站知识
2024/12/18 0:31:27
ubuntu 下切换python版本
ubuntu下ros和conda安装后都会改变python的默认环境,且需要用到的python版本各不相同,安装好后我们可能需要对系统的默认python指定进行微调。
1.首先用ls /usr/bin/python 查找出来系统python2 和 python3的版本
samsusamsu-pc:~/anaconda3/bin$ ls /…
建站知识
2025/1/9 15:38:01
ubuntu与win7的系统切换
幽幽转载 ubuntu版本是9.04,启动配置文件还是menu.lst,到了ubuntu9.10的时候就更名为grub.cfg了,ubuntu 10.04依旧沿用的是grub.cfg,但是这个文件的内容变更并不是那么大。在ubuntu中,grub.cfg(menu.lst)就相当于windo…
建站知识
2025/1/8 18:33:26
Ubuntu改装成Windows系统
工具:U盘
现有系统:Ubuntu、Windows镜像
难点:Ubuntu 系统的文件格式是EXT、Windows系统只能安装在NTFS格式的硬盘上,所以在安装的时候,需要先修改文件系统的格式 过程:
1、下载Windows镜像文件——>…
建站知识
2025/1/18 10:01:38
Ubuntu下 Python 版本切换
在Ubuntu的开发环境下,由于Python2和Python3很多不兼容,经常会需要我们手动切换Python版本。
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/…
建站知识
2025/1/3 2:39:14
将centos7或ubuntu16系统转换成NAS存储系统
(1)下载安装包(免安装)
tfcenter安装包https://share.weiyun.com/tFAN6x5p (2)解压并执行 nohup ./tfcenter & (后台运行)(v1.3.0及以上版本支持) (3)查找管理Web的…
建站知识
2025/1/9 13:32:02