Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Assignment

config apt-cacher 192.168.10.1 port 3128

 

Code Block
languagebash
sed -i 's#http://#http://192.168.10.1:3142/#g' /etc/apt/sources.list 

install emacs

Code Block
languagebash
sudo aptitude install emacs

...

install config openssh server and make it work

Code Block
titleStart ssh-agent
eval `ssh-agent`
exec ssh-agent bash (if ssh-add is not working)

...

If ssh doesn't work check the grp and own of .ssh/authorized_keys 

install bash completion

 

Code Block
aptitude install bash-completion

...

Code Block
if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi

 

 

 

Problems solved:

 

...

Document the work done

Well, that's kind of done but the editing interface of the wiki is not yet clear to me. Few shortcut:

  • create a code box:
Code Block
{code 'Enter'
  • heading
Code Block
'ctrl' AND '1' XOR '2' XOR '3'
  • bullet list
Code Block
'shift' AND 'ctrl' AND 'b'
  • bold, underline, italic
Code Block
'ctrl' AND 'b'
'ctrl' AND 'u'
'ctrl' AND 'i' 
  • save
Code Block
'ctrl' AND 's'

 

Problems that appeared

On start and halt

PROBLEM:

Code Block
exim paniclog /var/log/exim4/paniclog has non-zero size, mail system possibly broken

...

SOLUTION:

...

Code Block
rm /var/log/exim4/paniclog

...

need to start the network manually dhclient eth0

PROBLEM: when auto eth0 added to interfaces. Nfs interfaces gets stuck on boot.

SOLUTION: there was no 'auto lo' in /etc/network/interfaces. That added plus 'auto eth0'

...

 

Problems unsolved:makes it work.