lspci -v
That should give you quite a bit of info on things connected to your motherboard.
Thursday, August 28, 2008
Saturday, August 2, 2008
Austin Recycling prices 8/2/08
Dnt Radiators
(512) 467-0063
705 W Saint Johns Ave
Austin, TX
.60
North Austin Recycling Center
(512) 385-9154
7601 Burnet Rd
Austin, TX
.60-.70 (didn't ask what the range depended on)
Recycling Center
(512) 836-7512
9405 Dessau Rd
Austin, TX
.65
CMC Metal Recycling
710 Industrial Blvd
Austin, TX 78745
(512) 442-2384
.77
AMP Recycling
1704 Howard Lane
Austin, TX 78728
(512) 251-3407
.67
(512) 467-0063
705 W Saint Johns Ave
Austin, TX
.60
North Austin Recycling Center
(512) 385-9154
7601 Burnet Rd
Austin, TX
.60-.70 (didn't ask what the range depended on)
Recycling Center
(512) 836-7512
9405 Dessau Rd
Austin, TX
.65
CMC Metal Recycling
710 Industrial Blvd
Austin, TX 78745
(512) 442-2384
.77
AMP Recycling
1704 Howard Lane
Austin, TX 78728
(512) 251-3407
.67
Excel Delete Marked Row
Sub DelMarkedRow()
While ActiveCell.Row > 1
If ActiveCell.Value = "`" Then
ActiveCell.EntireRow.Delete
End If
ActiveCell.Offset(-1, 0).Activate
Wend
If (ActiveCell.Row = 1) And (ActiveCell.Value = "`") Then
ActiveCell.EntireRow.Delete
End If
End Sub
Excel Combin Next Row
Sub CombineNextRowValue()
Dim CurrCell As Range
Dim NextCell As Range
While (ActiveCell.Row <> 65536) And _
((ActiveCell.Value <> "") Or _
(ActiveCell.Offset(1, 0).Value <> ""))
Set CurrCell = ActiveCell
Set NextCell = ActiveCell.Offset(1, 0)
If (CurrCell.Value = "") Then
NextCell.Activate
ElseIf (CurrCell.Value <> "") And _
(NextCell.Value = "") Then
NextCell.Activate
ElseIf (CurrCell.Value <> "") And _
(NextCell.Value <> "") Then
CurrCell.Value = CurrCell.Value + Chr(10) + NextCell.Value
NextCell.EntireRow.Delete
CurrCell.Activate
End If
Wend
End Sub
Excel Remove Double Blank Rows
Sub FindDoubleBlank()
While ActiveCell.Row > 1
If ActiveCell.Value = "" And ActiveCell.Offset(-1, 0).Value = "" Then
ActiveCell.EntireRow.Delete
End If
ActiveCell.Offset(-1, 0).Activate
Wend
End Sub
Thursday, December 21, 2006
Updating GPL Java to Java 1.6
Using Ubuntu 6.06
Found out that the GPL Java was being used.
Downloaded Java 1.6.
Extracted to ~\jdk1.6.0\
Removed Java being used at:
/usr/lib/jvm/java-gcj/jre/bin/java
Moved Java:
sudo mv jdk1.6.0/ /usr/bin/
Found out that the GPL Java was being used.
Downloaded Java 1.6.
Extracted to ~\jdk1.6.0\
Removed Java being used at:
/usr/lib/jvm/java-gcj/jre/bin/java
Moved Java:
sudo mv jdk1.6.0/ /usr/bin/
Linux Azureus installation
Using Ubuntu 6.06.
Downloaded Azureus and uncompress into ~\Azureus.
Downloaded extra software libraries as listed from Azureus Linux FAQ page:
--------------------------------------
To get Azureus to start on linux you need to download SWT.
Make sure you choose the right version, GTK or Motif (cf. PS).
Extract the contents of the zip file somewhere, then move all .jar files and .so files to the same directory as Azureus.jar.
--------------------------------------
Tried running using: (from Azureus Linux FAQ page)
cd ~/Azureus
java -cp swt.jar:Azureus2.jar -Djava.library.path=. org.gudy.azureus2.ui.swt.Main
Azureus took a long time to start up. Showed a message window in bottom left that it needed to update something, but not the full interface. Had 2 buttons, "Hide" and "Next", but could not click either. Had to close using kill. Process name was not java, but something like jvm-jre.
I remembered something about Sun's java not being included in Linux b/c it does not use GNU GPL.
Searching for java using sudo find / -name java.
Found:
/etc/alternatives/java
/usr/bin/java
/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/bin/java
/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/jre/bin/java
Did an ls name -l and found:
/usr/bin/java -> /etc/alternatives/java
/etc/alternatives/java -> /usr/lib/jvm/java-gcj/jre/bin/java
Assumed this is was a GNU GPL approved java version.
Downloaded Sun's Java 1.6 self extracting file to ~/.
Ran it and it extracted to ~/jdk1.6.0/bin/.
That is not in the path, so had to specify which Java to run for Azureus.
cd ~/Azureus
~/jdk1.6.0/bin/java -cp swt.jar:Azureus2.jar -Djava.library.path=. org.gudy.azureus2.ui.swt.Main
Now startup is much faster, and the program runs completely now.
Tried running the updates, but it kept giving access errors.
Figured out it was trying to add .jar files or something to some a folder normail user doesn't have access to. So ran it as root.
cd ~/Azureus
sudo ~/jdk1.6.0/bin/java -cp swt.jar:Azureus2.jar -Djava.library.path=. org.gudy.azureus2.ui.swt.Main
Installed the updates successfully, well, except 1 or 2 that had some issues that still need to be worked out.
Ran program again as normal user, and things worked well, including the new added modules.
Downloaded Azureus and uncompress into ~\Azureus.
Downloaded extra software libraries as listed from Azureus Linux FAQ page:
--------------------------------------
To get Azureus to start on linux you need to download SWT.
Make sure you choose the right version, GTK or Motif (cf. PS).
Extract the contents of the zip file somewhere, then move all .jar files and .so files to the same directory as Azureus.jar.
--------------------------------------
Tried running using: (from Azureus Linux FAQ page)
cd ~/Azureus
java -cp swt.jar:Azureus2.jar -Djava.library.path=. org.gudy.azureus2.ui.swt.Main
Azureus took a long time to start up. Showed a message window in bottom left that it needed to update something, but not the full interface. Had 2 buttons, "Hide" and "Next", but could not click either. Had to close using kill. Process name was not java, but something like jvm-jre.
I remembered something about Sun's java not being included in Linux b/c it does not use GNU GPL.
Searching for java using sudo find / -name java.
Found:
/etc/alternatives/java
/usr/bin/java
/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/bin/java
/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/jre/bin/java
Did an ls name -l and found:
/usr/bin/java -> /etc/alternatives/java
/etc/alternatives/java -> /usr/lib/jvm/java-gcj/jre/bin/java
Assumed this is was a GNU GPL approved java version.
Downloaded Sun's Java 1.6 self extracting file to ~/.
Ran it and it extracted to ~/jdk1.6.0/bin/.
That is not in the path, so had to specify which Java to run for Azureus.
cd ~/Azureus
~/jdk1.6.0/bin/java -cp swt.jar:Azureus2.jar -Djava.library.path=. org.gudy.azureus2.ui.swt.Main
Now startup is much faster, and the program runs completely now.
Tried running the updates, but it kept giving access errors.
Figured out it was trying to add .jar files or something to some a folder normail user doesn't have access to. So ran it as root.
cd ~/Azureus
sudo ~/jdk1.6.0/bin/java -cp swt.jar:Azureus2.jar -Djava.library.path=. org.gudy.azureus2.ui.swt.Main
Installed the updates successfully, well, except 1 or 2 that had some issues that still need to be worked out.
Ran program again as normal user, and things worked well, including the new added modules.
Subscribe to:
Posts (Atom)