Search This Blog

Friday, October 18, 2013

Linux: cannot set LC_CTYPE locale or related problems

To make it permanent just edit the file “/etc/environment” and add the line:
LC_ALL=C
or in
/etc/profile
add
export LC_ALL=C

Wednesday, October 9, 2013

Simple access SVN Subversion repository behind proxy

Uncommenting and set the following lines: 

[global]
http-proxy-host=my.proxy
http-proxy-port=80
http-proxy-username=[username]
http-proxy-password=[password]

in file
~/.subversion/servers

Wednesday, October 2, 2013

Simple essential TAR usage

create archive:
tar -cvf test.tar /home/test/
extract archive:
tar -xvf test.tar
list archive content:
tar -tvf test.tar