一、划分磁盘
1.查看磁盘
sudo fdisk -l
Disk /dev/sda: 3.7 TiB, 4000787030016 bytes, 7814037168 sectors //新增的硬盘
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
sudo fdisk /dev/sda
kz@amax:~$ sudo fdisk /dev/sda
Welcome to fdisk (util-linux 2.31.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table.
The size of this disk is 3.7 TiB (4000787030016 bytes). DOS partition table format cannot be used on drives for volumes larger than 2199023255040 bytes for 512-byte sectors. Use GUID partition table format (GPT).
Created a new DOS disklabel with disk identifier 0x988e6975.
Command (m for help): p
Disk /dev/sda: 3.7 TiB, 4000787030016 bytes, 7814037168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x988e6975
Command (m for help): g
Created a new GPT disklabel (GUID: 082550F4-E534-CE4B-826C-A64238B60FDA).
Command (m for help): p
Disk /dev/sda: 3.7 TiB, 4000787030016 bytes, 7814037168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 082550F4-E534-CE4B-826C-A64238B60FDA
Command (m for help): n
Partition number (1-128, default 1):
First sector (2048-7814037134, default 2048): 2048
Last sector, +sectors or +size{K,M,G,T,P} (2048-7814037134, default 7814037134): 2930263039
Created a new partition 1 of type 'Linux filesystem' and of size 1.4 TiB.
Command (m for help): p
Disk /dev/sda: 3.7 TiB, 4000787030016 bytes, 7814037168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 082550F4-E534-CE4B-826C-A64238B60FDA
Device Start End Sectors Size Type
/dev/sda1 2048 2930263039 2930260992 1.4T Linux filesystem
/dev/sda2 2930264064 5860525056 2930260993 1.4T Linux filesystem
/dev/sda3 5860526080 7814037134 1953511055 931.5G Linux filesystem
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
kz@amax:~$ sudo mkfs.xfs /dev/sda1
[sudo] password for kz:
meta-data=/dev/sda1 isize=512 agcount=4, agsize=91570656 blks
= sectsz=4096 attr=2, projid32bit=1
= crc=1 finobt=1, sparse=0, rmapbt=0, reflink=0
data = bsize=4096 blocks=366282624, imaxpct=5
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=1
log =internal log bsize=4096 blocks=178848, version=2
= sectsz=4096 sunit=1 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
kz@amax:~$ sudo mkfs.xfs /dev/sda2
meta-data=/dev/sda2 isize=512 agcount=4, agsize=91570656 blks
= sectsz=4096 attr=2, projid32bit=1
= crc=1 finobt=1, sparse=0, rmapbt=0, reflink=0
data = bsize=4096 blocks=366282624, imaxpct=5
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=1
log =internal log bsize=4096 blocks=178848, version=2
= sectsz=4096 sunit=1 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
kz@amax:~$ sudo mkfs.xfs /dev/sda3
meta-data=/dev/sda3 isize=512 agcount=4, agsize=61047221 blks
= sectsz=4096 attr=2, projid32bit=1
= crc=1 finobt=1, sparse=0, rmapbt=0, reflink=0
data = bsize=4096 blocks=244188881, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=1
log =internal log bsize=4096 blocks=119232, version=2
= sectsz=4096 sunit=1 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
kz@amax:~$ sudo partprobe
sudo mount /dev/sda1 /home/kz/
sudo vim /etc/fstab
添加内容
/dev/sda1 /home/kz xfs defaults 0 0
二、安装cuda
lspci | grep -i nvidia
uname -m && cat /etc/*release
gcc –version
sudo apt-get install zlib1g
5.打开cuda官网https://developer.nvidia.com/cuda–toolkit–archive
下载相应版本安装包
wget https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run
sudo sh cuda_11.7.0_515.43.04_linux.run
sudo vim ~/.bashrc
在最后两行写入
export PATH=/usr/local/cuda-11.2/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-11.2/targets/x86_64-linux/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
7.更新
source ~/.bashrc
nvcc -V
三、安装cudnn
1.在官网下载安装包
https://developer.nvidia.com/rdp/cudnn–archive
2.sudo dpkg -i cudnn-local-repo-$distro-8.x.x.x_1.0-1_amd64.deb
3. sudo cp /var/cudnn-local-repo-*/cudnn-local-*-keyring.gpg /usr/share/keyrings/
4. sudo apt-get update
5. sudo apt-get install libcudnn8=8.x.x.x-1+cudaX.Y
6.sudo apt-get install libcudnn8-dev=8.x.x.x-1+cudaX.Y
7. sudo apt-get install libcudnn8-samples=8.x.x.x-1+cudaX.Y
8.验证
cp -r /usr/src/cudnn_samples_v8/ $HOME
cd $HOME/cudnn_samples_v8/mnistCUDNN
make clean && make
./mnistCUDNN
四、安装Anaconda
1.在官网下载安装包
https://www.anaconda.com/download#downloads
2.安装
bash Anaconda3-2022.05-Linux-x86_64.sh
(一直yes即可)
3.创建自己的环境
conda create -n wl python=3.8 anaconda
五、安装屏幕
sudo apt-get install screen
原文地址:https://blog.csdn.net/wyyyyyyyy_/article/details/134769832
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_35138.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!