The key point is to put session name (not host name)
svn+ssh://[username]@[putty saved session name]/path/to/repository
http://www.vectorns.com/blog/11-tortoisesvn-over-ssh-on-windows-via-putty
This is not a blog, but my notes and tips for research. Feel free to take any information and leave any comments or questions.
Search This Blog
Monday, May 30, 2011
Wednesday, May 18, 2011
mounting hfsplus file type on Ubuntu
Following packages are requried:
sudo apt-get install hfsplus hfsutils hfsprogs
check the file system:
mkfs.hfsplus -J /dev/sdc3mount -t hfsplus /dev/sdc3 /media/mybook -o rw,nosuid,nodev,uhelper=hal
or put the following line in /etc/fstab
/dev/sdc3 /media/mybook hfsplus rw,nosuid,nodev,uhelper=hal 0 0
Friday, May 6, 2011
To tar and gzip directories
#!/bin/sh
for dirs in AAA BBB CCC
do
tar cvf $dirs.tar $dirs ; gzip $dirs.tar
done
for dirs in AAA BBB CCC
do
tar cvf $dirs.tar $dirs ; gzip $dirs.tar
done
Linux / Unix Command: zip
When given the name of an existing zip archive, zip will replace identically named entries in the zip archive or add entries for new names. For example, if fooz.zip exists and contains foo/file1 and foo/file2, and the directory foo contains the files foo/file1 and foo/file3, then:
http://linux.about.com/od/commands/l/blcmdl1_zip.htm
- zip -r fooz foo
http://linux.about.com/od/commands/l/blcmdl1_zip.htm
Subscribe to:
Posts (Atom)
Labels
- Academic Notes (4)
- BLAS (1)
- CEE618 (2)
- CentOS (1)
- Computation (1)
- Conferences (1)
- Cross compiling (1)
- Graphics (1)
- Hawaii Tour (2)
- Intel compiler (1)
- Just (1)
- Laptop (1)
- LaTex (22)
- Life and Humanity (8)
- Linux and Computing (107)
- LSF (1)
- Lyx (3)
- Macintosh (5)
- MPI (1)
- News (11)
- OpenFoam (1)
- OpenMPI (1)
- PBS (2)
- Software (4)
- SSH (2)
- torque (1)
- Touchpad (1)
- VMD (1)
- yum (1)