|
Kubuntu Feisty Install Procedure Acer Aspire 5100-3357 C R Morrison 4/4/2007 This
is a collection of
notes I made for a fresh install of Kubuntu Feisty. This may give you
an idea of where to look for a solution for a problem. These notes are
incomplete and probably have errors. Use your own judgement in
following them. You may not need each step for your instalation. If you
find an error or would like to make an addition or subtaction to these
notes, please give me a call, or e-mail. Charlie Morrison
2/28/2008
sudo module-assistant update How to mount network folders on boot-up, and allow all users to read/write
sudo mkdir /media/sharename
username=myusername
sudo chmod 700 /root/.smbcredentials
//192.168.0.1/linux /media/sharename smbfs credentials=/root/.smbcredentials,dmask=777,fmask=777 0 0
wget http://kent.dl.sourceforge.net/sourceforge/wine/wine_0.9.5-winehq-1_i386.deb wget http://www.sourcefiles.org/Emulators/Microsoft/winetools-0.9jo-III.tar.gz tar -xf winetools Error loading setupx.dll Bad EXE format for Error loading advpack.dll While loading MDAC: error occurred while loading setup engine library It seems that the installation has failed apt-get install build-essential
This is the solution for [ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0, disabled] error message in the dmesg file after booting: acpi=force
irqpoll
seems to work... scroll until you find defoptions= acpi=force irqpoll save, quit and the run sudo update-grub reboot and enjoy the fix (let's hope it's a final one!) ---------------------------------------------------------------------------------------------------- Change to allow Firefox to open Thunderbird in a hyerlink: Setting Firefox's email client in Linux These steps will allow opening your desired email client in Linux when operating in Firefox and using its menus, or when activating an email link on a Firefox page: 1. In Firefox's Location (URL) Bar, enter "about:config" and then press <enter> or click "Go". 2. With the cursor in the body of the resulting page, <right-click> the mouse. 3. From the pop-up menu, select "New". 4. From the next pop-up menu, select "String". 5. In the pop-up dialog box "Enter preference name", enter "network.protocol-handler.app.mailto" (without quotes), and click "OK" (You might wish to cut-and-paste that phrase to ensure correct spelling). 6. In the pop-up dialog box "? network.protocol-handler.app.mailto", enter "/usr/bin/kmail" without quotes [or the actual filesystem location of your desired email client] and click "OK". This should be the Full Path of the program, i.e. "/usr/bin/kmail", not just the path "/usr/bin". I used mozilla-thunderbird for the complete path name. Without restarting Firefox, you can test by opening or switching to another tab. from the Firefox top menu select, "File -> Send Link". Your desired email client should open. If that doesn't happen, redo your steps, ensuring the spelling of your entries is correct, and ensure the actual Full Path of your desired mail client is entered. ---------------------------------------------------------------------------------------------------- How to mount/unmount devices with and change names for dos devices using WINE: Edit /etc/udev/rules.d/10-local.rules to add the following: # My own rules file for my own devices SUBSYSTEMS=="scsi", ATTRS{vendor}=="FUJIFILM", NAME="FujiCamera" SUBSYSTEMS=="usb", ATTRS{product}=="Belkin Components", NAME="COM1" This looks for a specific camera and renames it to Fujicamera when plugged in and renames a Belkin USB to RS 232 converter to COM1. Add a symlink to ~/.wine/dos to COM1 > /dev/COM1 sudo udevcontrol reload_rules sudo /etc/init.d/udev restartThis is a command to get the udev info for a device (in this case, sda) udevinfo -a -p $(udevinfo -q path -n /dev/sda) |