Please contact your supervisor.
First contact your supervisor. Then fill out this form https://status.cse.unsw.edu.au/newcomputer/ (username and password is your zid and zpass).
Contact Dr. Dong Wen to join the group dwen+dbgprojects
.
Contact cse system support (ss@cse.unsw.edu.au) to create a personal folder in the vldb
server. After creating the directory your folder address is: /import/vldb/1/scratch/zid
Since vldb
cannot be accessed directly by the external network. vldb
server can only log in via LAN.
If you are working in K17, you can connect directly to the vldb
server:
ssh zid@vldb.cse.unsw.edu.au
If you are working from home, you need to connect to the cse
server first before you can connect to the vldb
server:
xxxxxxxxxx
ssh zid@cse.unsw.edu.au
ssh zid@vldb.cse.unsw.edu.au
And your personal folder address is: /import/vldb/1/scratch/zid
If you want to use remote connect in vscode, please do not use remote-ssh
to connect our server. You can follow the instruction posted by cse
(http://www.cse.unsw.edu.au/~learn/homecomputing/sshfs-remote/).
You can use scp
command to share. It will be pretty fast since all the servers are LAN. For example:
x
scp file.txt zid@vldb.cse.unsw.edu.au:/path
# scp with directory
scp -r directory zid@vldb.cse.unsw.edu.au:/path
You can use SimpleHTTPServer
module which belongs to http.server
in Python. Using http.server
build a temporary file server to share files. For example, user 1 want to share file to user 2. First switch to the folder you want to share. Then user 1 can execute the following command in terminal:
python3 -m http.server --bind 0.0.0.0 8000
User 2 can use wget
to get the file:
wget 0.0.0.0:8000/file