Hi and welcome to VectorLinux.
You will get better responses if you post one question for each issue, in the appropriate sections of the forum. Include your VL version and information about your hardware, error messages etc.
I'll take a stab at the touchpad issue. You can use options in xorg.conf to control it. The list is quite long. Here is a good guide:
http://en.gentoo-wiki.com/wiki/Synaptics_Touchpad Another way is to use "synclient". Run "synclient -l" to see all the options.
To use xorg.conf, using my setup as an example; you need an entry for the touchpad in the "ServerLayout" section:
Section "ServerLayout"
Identifier "X.org Configured"
InputDevice "Synaptics Touchpad"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Next, add a section for the touchpad:
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMconfig" "true"
Option "HorizScrollDelta" "0"
Option "VertEdgeScroll" "1"
Option "TapButton1" "1"
EndSection