Usefull linux commands
System
- List linux version, system information
uname -a
- List partitions, and usage
df
- List space under the directory
du -h
- List all last login time: lastlog
Setting up ubuntu (9.10) in SCS environment
http://www.cs.cmu.edu/~hyeontae/ubuntu_in_SCS.html
Setting up Kerberos and AFS in ubuntu 7.10
- add sources to /etc/apt/source.list
deb http://us.archive.ubuntu.com/ubuntu gutsy universe main restricted
multiverse
- apt-get update
apt-get upgrade
- install openafs
apt-get install build-essential module-assistant
m-a a-i openafs
apt-get install openafs-client
- sudo apt-get install heimdal-clients libpam-heimdal
- editing /etc/krb5.conf (emacs /etc/krb5.conf or nano
/etc/krb5.conf)
[libdefaults]
default_realm = CS.CMU.COM
.....
[domain_realm]
.cs.cmu.edu = CS.CMU.EDU
cs.cmu.edu = CS.CMU.EDU
- edit /etc/pam.d/common-auth
auth sufficient pam_krb5.so minimum_uid=1000
auth required pam_unix.so nullok_secure
- edit /etc/pam.d/common-session
session required pam_unix.so
session optional pam_foreground.so
session optional pam_krb5.so
- obtain ticket
kinit
steps to use chinese input method in English locale in linux (ubuntu 7.04)
- create a directory .xinput.d if there is no such directory
in your home directory
- create a file in that firectory with name: default
- put the following things in your directory
XIM=SCIM
XIM_PROGRAM=scim
XIM_ARGS="-d"
GTK_IM_MODULE=scim
SCIM_QTIMM_XINPUT=/etc/X11/xinit/xinput.d/scim-qtimm
[ -r "${SCIM_QTIMM_XINPUT}" ] && . ${SCIM_QTIMM_XINPUT}
unset SCIM_QTIMM_XINPUT
# override with xim for now
QT_IM_MODULE=xim
- later, use Ctrl+Space to switch between input method.
steps to use chinese input method in English locale in linux (ubuntu 9.04)
- check system-->language support --> use .... input
steps to save to eps file (in windows)
This method possibly requires GSView software. Thanks
to Markus Nilsson for suggesting this.
- Install the drivers for a Postscript printer (often denoted PS in
the end of the name of the printer) if you don't already
have one installed on your computer. (This can be done as follows:
Start -> Control Panel -> Printers -> Add printer.
Press next a couple of times until you reach the page where you can
choose between different manufacturers.
Choose a Postscript printer, e.g., Lexmark Optra S 1250 PS.)
- Isolate each figure in its own PowerPoint document.
- Print the figure, but check the box "Save to file", and under properties/advanded/Postscript options, select
Encapsulated postscript (EPS).
- Now you're almost done. The default setting for the boundary box
for your drawing has been set to fill the whole page. If you
want to edit this, use GSView.
Under the File menu, use PS to EPS without checking the
"Automatically calculate Bounding Box". Select your new
bounding box, and save the file as an EPS.
- Use LaTeX's psfig package to put the .eps figure into the LaTeX document.
change mac address in linux
There are a lot of reasons you might want to manually set your MAC address for your network card. I won’t ask you what your reason is.
To change this setting, we’ll need to edit the /etc/network/interfaces file. You can choose to use a different editor if you’d like.
sudo gedit /etc/network/interfaces
You should see the line for your network interface, which is usually eth0. If you have dhcp enabled, it will look like this:
auto eth0
iface eth0 inet dhcp
Just add another line below it to make it look something like this:
auto eth0
iface eth0 inet dhcp
hwaddress ether 01:02:03:04:05:06
Obviously you would want to choose something else for the MAC address, but it needs to be in the same format.
sudo /etc/init.d/networking restart
You will need to restart networking or reboot to take effect.