Difference between revisions of "Howto Ubuntu"

From DiLab
Jump to: navigation, search
(Other nice external links and howto-s)
(Notes about installing and setup of various apps and features in Ubuntu)
Line 1: Line 1:
==Notes about installing and setup of various apps and features in Ubuntu==
==Notes about installing and setup of various apps and features in Ubuntu==


* [[Mediawiki setup]]
* [[Mediawiki setup | Mediawiki]]
* [[Mysql notes]]
* [[Mysql notes | Mysql]]
* [[Octave setup]]
* [[Trac setup | Trac]]
* [[Trac setup]]
* [[OpenOffice setup]]



* [[ssh with a private-public key]]
* [[ssh with a private-public key]]
* [[svn notes]] - Subversion
* [[svn notes | SVN]] - Subversion
* [[simpleproxy]] - Simple TCP proxy for linux
* [[simpleproxy]] - Simple TCP proxy for linux


* [[SciTe notes]] - the lightweight programmers editor
* [[Emacs notes | Emacs]] - some of my favoritre customizations
* [[Emacs notes]] - some of my favoritre customizations
* [[SciTe notes | SciTe / Scintilla]] - the lightweight programmers editor
* [[OpenOffice setup | OpenOffice]]
* [[grep notes | Grep]] - grep and egrep usage tips



* [[Octave setup | Octave]] (MatLab alternative)
* [[grep notes]] - grep and egrep usage tips





Revision as of 13:56, 2 November 2009

Notes about installing and setup of various apps and features in Ubuntu



Misc tasks

Other nice external links and howto-s

DV/Firewire for Ubuntu

https://help.ubuntu.com/community/Firewire

Tunneling to socks proxy

ssh-tunnel-socks-proxy

In short:
$ssh -D 9999 username@ip-address-of-ssh-server
Then set in Firefox to use a SOCKS proxy: “localhost", port 9999

Acroread on Ubuntu

The link: [1]

Check the ports and apps listening on them

netstat -lnptu

Listing members of a group

I.e., the opposite to the command 'groups myuser'

sudo apt-get install members     [if needed]
members groupname


Custom autocomplete in Ubuntu

It is nice to use TAB key to autocomlete path for example, for a ls command in bash. It turns out, you can also autocomplete certain command arguments, e.g. apt-get inst<TAB> expands to apt-get install. Even better, you can define your own completion rules for other commands and applications.

Read more on "howto" here: part 1 and part 2