Difference between revisions of "How-Tos"
Crulshorukh (talk | contribs) m |
|||
(6 intermediate revisions by one other user not shown) | |||
Line 290: | Line 290: | ||
===Thunderbird=== | ===Thunderbird=== | ||
+ | |||
+ | ==Mercurial== | ||
+ | |||
+ | =====[http://blog.sidkalra.com/2008/10/applying-a-patch-to-a-repo-using-mercurial/ Applying a patch to a Repo]===== | ||
+ | {|style="background-color:LightYellow;width:100%;padding:10px" | ||
+ | <hr style="height:5px;width:15%;background-color:Peru;"> | ||
+ | <br/> | ||
+ | {|style="background-color:PaleGoldenrod;width:90%;align:center;margin-left:auto;margin-right:auto;" | ||
+ | | | ||
+ | '''<span style="color:DarkRed">Step 1</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Download the .patch or .diff file onto your machine</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 2</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Navigate to the repo that you want to install the patch to i.e. testRepo | ||
+ | (I will using repo name for this example, substitute it with your repo name when you are trying to apply a patch yourself)</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 3</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Open testRepo\.hg\hgrc (the config file)</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 4</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Add the following to hgrc and save (This enables queues for hg so that we can use commands that we need, qimport and qpush)[extensions] | ||
+ | hgext.mq =</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 5</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Now open up a command prompt and navigate to your repo directory</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 6</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Type in hg qimport <<full-path-of-patch-file>> and press enter</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 7</span>''' | ||
+ | <blockquote> | ||
+ | <pre>The above command should create a patch folder within testRepo\.hg\patches\</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 8</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Next navigate to testRepo\.hg\patches\</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 9</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Type in hg qpush <<patch-file-name>></pre> | ||
+ | </blockquote> | ||
+ | |||
+ | '''<span style="color:DarkRed">Step 10</span>''' | ||
+ | <blockquote> | ||
+ | <pre>Done! The patch should have been applied (if you get an error such as “abort: local changes found, | ||
+ | refresh first” then that means you have made changes to the original files and the patch won’t work)</pre> | ||
+ | </blockquote> | ||
+ | |||
+ | |} | ||
==Open Office== | ==Open Office== | ||
Line 298: | Line 361: | ||
*Ubuntu: [http://www.ubuntu.com/ http://www.ubuntu.com/] | *Ubuntu: [http://www.ubuntu.com/ http://www.ubuntu.com/] | ||
*Ubuntu Forums: [http://ubuntuforums.org/ http://ubuntuforums.org] | *Ubuntu Forums: [http://ubuntuforums.org/ http://ubuntuforums.org] | ||
+ | |||
+ | ===Songbird=== | ||
+ | ====Linux Java How-to==== | ||
+ | For whatever reason, Songbird does not use the Java plugin if it is already installed for Firefox. | ||
+ | The following is a set of instructions to install and enable the Java Runtime Environment plugin for Songbird on Linux. | ||
+ | =====Ubuntu===== | ||
+ | * Download the java runtime environment binary: | ||
+ | <blockquote> | ||
+ | <pre> | ||
+ | 1. Go to http://java.sun.com/javase/downloads/index.jsp | ||
+ | |||
+ | 2. Scroll down to "Java Runtime Environment (JRE) 6 Update 7" | ||
+ | |||
+ | 3. Click on DOWNLOAD | ||
+ | |||
+ | 4. Select PLATFORM of Linux | ||
+ | |||
+ | 5. Select LANGUAGE of Multi-language | ||
+ | |||
+ | 6. Check "I agree..." | ||
+ | |||
+ | 7. Click CONTINUE | ||
+ | |||
+ | 8. Click jre-6u7-linux-i586.bin link | ||
+ | |||
+ | 9. Save the file | ||
+ | </pre> | ||
+ | </blockquote> | ||
+ | * Once the download completes, move the file to your HOME directory. | ||
+ | * Click Applications > Accessories > Terminal | ||
+ | * Install the JRE binary: | ||
+ | <blockquote> | ||
+ | <pre> | ||
+ | 1. sudo chmod a+x ./jre-6u7-linux-i586.bin | ||
+ | |||
+ | 2. sudo ./jre-6u7-linux-i586.bin | ||
+ | </pre> | ||
+ | </blockquote> | ||
+ | * Once the installation completes, create a shortcut for your Mozilla Plugins: | ||
+ | <blockquote> | ||
+ | <pre> | ||
+ | 1. sudo mkdir /home/<username>/.mozilla/plugins | ||
+ | 2. sudo ln -s /home/<username>/jre1.6.0_07/i386/ns7/libjavaplugin_oji.so /home/<username>/.mozilla/plugins/libjavaplugin_oji.so | ||
+ | </pre> | ||
+ | </blockquote> | ||
+ | * Start Songbird | ||
+ | * Open a new tab | ||
+ | * Type about:plugins into the URL bar and press ENTER<br />'''You should see a Java Plugin listed''' | ||
+ | * Go to http://firenes.zaldo.com.ar/emulador.php?rom=Mario%20Bros%20(JU)<br />'''The applet should load momentarily''' | ||
+ | |||
+ | =====Fedora===== | ||
+ | * Download the java runtime environment binary: | ||
+ | <blockquote> | ||
+ | <pre> | ||
+ | 1. Go to http://java.sun.com/javase/downloads/index.jsp | ||
+ | |||
+ | 2. Scroll down to "Java Runtime Environment (JRE) 6 Update 7" | ||
+ | |||
+ | 3. Click on DOWNLOAD | ||
+ | |||
+ | 4. Select PLATFORM of Linux | ||
+ | |||
+ | 5. Select LANGUAGE of Multi-language | ||
+ | |||
+ | 6. Check "I agree..." | ||
+ | |||
+ | 7. Click CONTINUE | ||
+ | |||
+ | 8. Click jre-6u7-linux-i586.bin link | ||
+ | |||
+ | 9. Save the file | ||
+ | </pre> | ||
+ | </blockquote> | ||
+ | * Once the download completes, move the file to your HOME directory. | ||
+ | * Click Applications > System Tools > Terminal | ||
+ | * Install the JRE binary: | ||
+ | <blockquote> | ||
+ | <pre> | ||
+ | 1. su | ||
+ | |||
+ | 2. ENTER YOUR PASSWORD | ||
+ | |||
+ | 3. chmod a+x ./jre-6u7-linux-i586.bin | ||
+ | |||
+ | 4. ./jre-6u7-linux-i586.bin | ||
+ | </pre> | ||
+ | </blockquote> | ||
+ | * Once the installation completes, create a shortcut for your Mozilla Plugins: | ||
+ | <blockquote> | ||
+ | <pre> | ||
+ | 1. mkdir /home/<username>/.mozilla/plugins | ||
+ | 2. ln -s /home/<username>/jdk1.6.0_07/jre/plugin/i386/ns7/libjavaplugin_oji.so /home/<username>/.mozilla/plugins/libjavaplugin_oji.so | ||
+ | </pre> | ||
+ | </blockquote> | ||
+ | * Start Songbird | ||
+ | * Open a new tab | ||
+ | * Type about:plugins into the URL bar and press ENTER<br />'''You should see a Java Plugin listed''' | ||
+ | * Go to http://firenes.zaldo.com.ar/emulador.php?rom=Mario%20Bros%20(JU)<br />'''The applet should load momentarily''' | ||
[[Category:Mozilla for beginners]] | [[Category:Mozilla for beginners]] |
Latest revision as of 09:41, 5 December 2008
Welcome
Welcome to the Seneca How-To page. You'll find How-To's for all things Open Source related.
Wiki
Mozilla
Firefox |
|||||||||
|
Thunderbird
Mercurial
Applying a patch to a Repo
Step 1 Download the .patch or .diff file onto your machine Step 2 Navigate to the repo that you want to install the patch to i.e. testRepo (I will using repo name for this example, substitute it with your repo name when you are trying to apply a patch yourself) Step 3 Open testRepo\.hg\hgrc (the config file) Step 4 Add the following to hgrc and save (This enables queues for hg so that we can use commands that we need, qimport and qpush)[extensions] hgext.mq = Step 5 Now open up a command prompt and navigate to your repo directory Step 6 Type in hg qimport <<full-path-of-patch-file>> and press enter Step 7 The above command should create a patch folder within testRepo\.hg\patches\ Step 8 Next navigate to testRepo\.hg\patches\ Step 9 Type in hg qpush <<patch-file-name>> Step 10 Done! The patch should have been applied (if you get an error such as “abort: local changes found, refresh first” then that means you have made changes to the original files and the patch won’t work) |
Open Office
Eclipse
Linux
Fedora
Ubuntu
- Ubuntu: http://www.ubuntu.com/
- Ubuntu Forums: http://ubuntuforums.org
Songbird
Linux Java How-to
For whatever reason, Songbird does not use the Java plugin if it is already installed for Firefox. The following is a set of instructions to install and enable the Java Runtime Environment plugin for Songbird on Linux.
Ubuntu
- Download the java runtime environment binary:
1. Go to http://java.sun.com/javase/downloads/index.jsp 2. Scroll down to "Java Runtime Environment (JRE) 6 Update 7" 3. Click on DOWNLOAD 4. Select PLATFORM of Linux 5. Select LANGUAGE of Multi-language 6. Check "I agree..." 7. Click CONTINUE 8. Click jre-6u7-linux-i586.bin link 9. Save the file
- Once the download completes, move the file to your HOME directory.
- Click Applications > Accessories > Terminal
- Install the JRE binary:
1. sudo chmod a+x ./jre-6u7-linux-i586.bin 2. sudo ./jre-6u7-linux-i586.bin
- Once the installation completes, create a shortcut for your Mozilla Plugins:
1. sudo mkdir /home/<username>/.mozilla/plugins 2. sudo ln -s /home/<username>/jre1.6.0_07/i386/ns7/libjavaplugin_oji.so /home/<username>/.mozilla/plugins/libjavaplugin_oji.so
- Start Songbird
- Open a new tab
- Type about:plugins into the URL bar and press ENTER
You should see a Java Plugin listed - Go to http://firenes.zaldo.com.ar/emulador.php?rom=Mario%20Bros%20(JU)
The applet should load momentarily
Fedora
- Download the java runtime environment binary:
1. Go to http://java.sun.com/javase/downloads/index.jsp 2. Scroll down to "Java Runtime Environment (JRE) 6 Update 7" 3. Click on DOWNLOAD 4. Select PLATFORM of Linux 5. Select LANGUAGE of Multi-language 6. Check "I agree..." 7. Click CONTINUE 8. Click jre-6u7-linux-i586.bin link 9. Save the file
- Once the download completes, move the file to your HOME directory.
- Click Applications > System Tools > Terminal
- Install the JRE binary:
1. su 2. ENTER YOUR PASSWORD 3. chmod a+x ./jre-6u7-linux-i586.bin 4. ./jre-6u7-linux-i586.bin
- Once the installation completes, create a shortcut for your Mozilla Plugins:
1. mkdir /home/<username>/.mozilla/plugins 2. ln -s /home/<username>/jdk1.6.0_07/jre/plugin/i386/ns7/libjavaplugin_oji.so /home/<username>/.mozilla/plugins/libjavaplugin_oji.so
- Start Songbird
- Open a new tab
- Type about:plugins into the URL bar and press ENTER
You should see a Java Plugin listed - Go to http://firenes.zaldo.com.ar/emulador.php?rom=Mario%20Bros%20(JU)
The applet should load momentarily