25 June 2011

Installing Sopcast

http://www.webupd8.org/2010/05/install-linux-sopcast-player-040-in.html

1. You must download libstdc++ manually because this package is not included in the Ubuntu repositories. Don't worry, you can use these .deb files:

2. Add the SopCast Player PPA and install SopCast Player:

sudo add-apt-repository ppa:ferramroberto/extra && sudo apt-get update
sudo apt-get install sopcast-player sp-auth



And that's it, now go to Applications > Sound & Video > SopCast Player.

18 June 2011

Ubuntu Freenet installation



Step 1: INSTALL JAVA JRE
http://www.ubuntugeek.com/how-to-install-java-runtime-environment-jre-in-ubuntu-10-10-maverick-using-ppa.html
sudo add-apt-repository ppa:sun-java-community-team/sun-java6
sudo apt-get update
sudo apt-get install sun-java6*


17 June 2011

SoundBlaster Live and Ubuntu

In old Ubuntu versions asoundconf is used:

sudo asoundconf list
Live
V8237
...
...
sudo asoundconf set-default-card Live
then Reboot


But now, simply select from System > Preference > Sound

Ubuntu 11 classic menu

How to change back to classic menu. The new menu is horrible:

http://ricochen.wordpress.com/2011/05/13/how-to-swith-back-to-classic-menu-in-ubuntu-11-04/

1) Click on the Ubuntu icon on the top left corner, type “login screen” and click on the “Login Screen” application

2) Click unlock, enter password and the window should become the following, choose “Ubuntu Classic” from the dropdown menu, click Close then REBOOT.

If Live CD / USB boot is used, then it will prompt username/pw after reboot. The default username/pw is 'ubuntu' and blank password

Mount/map Windows share permanently

https://wiki.ubuntu.com/MountWindowsSharesPermanently
http://ubuntuforums.org/showthread.php?t=255872&highlight=mounting+shares

sudo apt-get install smbfs

in /etc/fstab :
sudo gedit /etc/fstab

smbmount //servername/sharename /mountdirectory -o username=mywindowsusername,password=mywindowspassword

if un/pw not needed, use 'defaults'

smbmount //192.168.1.11/WDTV_DATA /wdtv -o username=defaults,password=defaults


===
Note, apparently the above does not work with live/usb boot? Manually:

sudo mkdir /media/wdtv
sudo smbmount //192.168.1.11/WDTV_DATA /media/wdtv -o username=defaults,password=defaults

ls /media/wdtv
df -l
fdisk -l

Shell Script:
===
#!/bin/bash
sudo mkdir /media/wdtv
sudo smbmount //192.168.1.11/WDTV_DATA /media/wdtv -o username=defaults,password=defaults

16 June 2011

USB Boot

Disable floppy from BIOS to avoid boot issue "can't open dev sr0"
http://ubuntuforums.org/showthread.php?t=1345125