Install:
apt-get install sshfs
Mount remote home:
sshfs hostname: mountpoint
Mount under different user:
sshfs user@hostname: mountpoint
Mount specific path:
sshfs hostname:/path mountpoint
Umount:
fusermount -u mountpoint
source: http://fuse.sourceforge.net/sshfs.html
Tuesday, May 26, 2009
Thursday, May 14, 2009
Burning DVD in Debian Linux
Burning CD / DVD under Debian / Kubuntu
# Install k3b
apt-get install k3b libk3b2-extracodecs
# Suggested packages
k3b-i18n movixmaker-2 normalize-audio sox toolame
# Run k3b
k3b
# Install k3b
apt-get install k3b libk3b2-extracodecs
# Suggested packages
k3b-i18n movixmaker-2 normalize-audio sox toolame
# Run k3b
k3b
Thursday, May 07, 2009
Debugging with gdb
If I want to debug some program I miss some handfull guide. Here is one:
Commands
gdb name-of-executable
gdb -e name-of-executable -c name-of-core-file
gdb name-of-executable -pid process-id
(Use ps -auxw to list process id's.)
Resources
Gdb tutorial at yolinux
Example gdb session and commands
Software
cgdb - curses based gdb ide
ddd - gdb ide for x window
Commands
gdb name-of-executable
gdb -e name-of-executable -c name-of-core-file
gdb name-of-executable -pid process-id
(Use ps -auxw to list process id's.)
Resources
Gdb tutorial at yolinux
Example gdb session and commands
Software
cgdb - curses based gdb ide
ddd - gdb ide for x window
Subscribe to:
Posts (Atom)