欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

share files between windows 10 and ubuntu in virtualbox

程序员文章站 2024-02-27 23:59:21
...
sudo mount -t vboxsf vm-share-folder /mnt/

vm-share-folder is the folder in windows 10

/mnt/ is the path the above folder will be mounted

The following cmd is used to upload files to servers.

scp -r /home/kaikai/PageRank/ [email protected]:~/

 

run parallel code with multiple nodes

srun -N 1 -c 48 ./spmv_parallel data-path 48

vim command

i: enter edit mode

u: cancel the last operation

dd: delete the current line

yy or Y: copy the current line

y$: copy cursor to the end of the line