Firefox 4.0beta12pre to run in Linux Terminal name ?

I use a Linux system, the Firefox version 4.0beta12pre, I want to know to run it in the exact name of the terminal, thank you.

Where did you install that Firefox 4.0beta12pre version?
Easiest to start Firefox is to create a desktop shortcut to the Firefox program.
See:
*http://kb.mozillazine.org/Installing_Firefox#Linux

Similar Messages

  • How do I install the latest version of Firefox on my Acer Aspire One running Linpus Linux Lite?

    I have an Acer Aspire One Netbook. It runs "Linpus Linux Lite" OS. It came with Forefox 2 installed. I have searched the web for advice on how to upgrade to Firefox 3.5.
    I had a go at it, I have now lost Firefox 2, but failed to install a later version.
    Can someone tell me how t0 get either Firefox 2 back, or better still, unstall Firefox 3.5?
    I should say that I'm a novice so I need really basic instructions.
    If this plea for help doesn't work, I'll take my netbook to my local PC chap & ask for Windows to be installed on it!
    Thanks.

    See here:
    http://linuxforums.org.uk/netbooks/install-firefox-5-on-an-acer-aspire-one-running-linpus-lite-linux/
    for instructions on how to install Firefox 5 on an Acer Aspire One running Linpus Lite Linux.

  • Hey i dont have a mobile phone i have toshiba "laptop" to say this way and i cannot install firefox becuase this laptop runs android and cannot install linux version...can u help me?Also i cant install adobe flash player...Any advices??

    Hey I have a toshiba laptop and I cannot install firefox because the laptop runs android and there's only version for linux...and if u can tell me how to install adobe flash player too...Any advices??

    This is a known problem, but we don't have a solution for it. If your device has the Toshiba Market app, you might be able to download a (possibly outdated) version of Firefox from there.
    For more info, see:
    * https://support.mozilla.com/en-US/questions/790362
    * https://bugzilla.mozilla.org/show_bug.cgi?id=623929

  • Firefox will not load Java in Linux - even after following all instructions on net I can find - what am I doing wrong??

    The problem I've got is I'm currently running Puppy Linux on my laptop.
    Now I've tried everything I can to get Java working under either Firefox, Chromium or Seamonkey (I have all three browsers on my computer).
    For firefox and seamonkey I have tried the following -
    downloaded the tar.gz file for java
    unpacked it to /opt/java
    gone to /user/lib/mozilla/plugins and run the command
    ln -s /opt/java/plugin/i386/ns7/libjavaplugin_oji.so
    to create the symbolic link to the plugin
    checked that the plugin is executable (actually even tried giving everything full permission to read/write and execute it)
    For Chromium done a similar thing but put the symbolic link in /usr/lib/chrome-linux/plugins folder instead.
    Restarted the web browser, even tried restarting X Server in case the browser is running somewhere in the background.
    All three browsers can pick up all the other .so plugins in that folder except Java.
    When I click check plugins on firefox I get to the page about "Missing Java? - For your safety Firefox has disabled your outdated version of Java. Please upgrade to the latest version".
    However the version I've downloaded is Version 7 Update 9 which is exactly the same one that is available as the latest version from Java themselves (it was only downloaded from that link a couple of minutes before, I've even tried re-downloading it just in case there has been an update within those 5 minutes).
    If I go into the Java folder and run ControlPanel the Java control panel pops up and it knows where Java is installed and everything.
    So what on earth is going on? Am I installing the plugin in the right directory? I'm guessing so as that is where all the other plugins are stored and Firefox, Chrome and Seamonkey are picking all the others up fine, or could there be an older version of Java lurking around somewhere on my system that Firefox, Seamonkey and Chrome are all trying to use?
    I've also tried downloading the RPM and installing that into the /usr/java folder and replacing the symlink from /opt/java to the one in the /usr/java folder and still nothing.
    I just really can't understand it 'cos it's picking up all the other plugins like Gecko and even installed Flash in the same way and that works fine.

    Thanks cor-el looks like Oracle need to update their linux installation instructions then. If only I'd have known that before doing all sorts to get it working.
    I now have Java in Firefox, Chrome and Seamonkey :) :) :) :) :).

  • Access linux terminal to send shutdown command

    I'm needing to access the linux terminal to send the shutdown command,
    here is the code i'm trying
      try{
                Process p = Runtime.getRuntime().exec("sudo shutdown -h now");
            }catch ( Exception e){
                System.out.println("Exception in shuttin down machine");
                JOptionPane.showMessageDialog(null,"Can't shutdown.  Shit!");
            }I've used this commend to use the command line in windows, but not sure how to change it over for linux.
    Thanks

    I had a similar problem recently where I need to send multiple commands after the initial Runtime.exec(). My solution involved a PrintWriter...
    Process p = Runtime.getRuntime().exec("sudo shutdown -h now");
    PrintWriter pw = new PrintWriter(p.getOutputStream());
    pw.println("yourpassword");
    pw.flush();
    pw.close();As far as this...
    "sudo (and ssh etc.) won't take password from the stdin, if it is not a terminal. "
    ... Im not really sure. The method above did work for me, but if sudo doesn't check stdin, Im not sure how my solution works
    A couple other things you might consider. When you use Runtime.exec(), you are passing the system a command, you are not sending a string to a command line. For example, trying to run ...
    Process p = Runtime.getRuntime().exec("ls /usr/bin");
    ... will do nothing since "ls" does not start a new process, but is more of a routine. Likewise, you may or may not have problems using the shutdown command. If you do have problems, you may need to start a terminal with Runtime.exec(), and then send the shutdown command through the terminals stdin using the PrintWriter method.
    And on a second note, you may also need to reorganize your code to this...
    Process p = Runtime.getRuntime().exec("sudo", "shutdown", "-h", "now");
    Runtime.exec() will take your string and pass it as a command, it is not meant to directly pass arguments. It may work fine as you have it, but if you run into problems, pass your commands in as a String[] (as shown right above)
    Hope that helps
    Edited by: cpetzol2 on Apr 2, 2008 7:49 PM

  • [SOLVED] Firefox and Thunderbird intermittently runs without a window

    I'm having an intermittent problem with Firefox and Thunderbird. When I attempt to launch either firefox or thunderbird the respective application will show up in htop (I see a bunch of firefox threads) but no window appears and the CPU load is 0%. When the application (Firefox or Thunderbird) is running but not visible, the mouse and keyboard remain fully functional; e.g. I can launch a new terminal and switch work-spaces without trouble. Repeatedly killing the application and restarting it will sometimes result in the application loading properly (i.e. I get a fully functional window with working menus, etc).
    I'm currently using Firefox version 8.0.1 and Thunderbird version 8.0 with the i3 window manager on my Macbook 5,1 (with nvidia drivers). I did a full system update about a month ago. I've not experienced this problem on my workstation: a custom built AMD system with ATI graphics. Both my macbook and custom workstation are using the same versions of i3, Firefox, and Thunderbird.
    I did a little experiment and temporarily switch over to fluxbox for a while. While using fluxbox I was unable to replicate the symptoms; both Firefox and thunderbird appear to work fine. But, since the problem is "random" it is hard to say for sure if this was just a coincidence.
    I tried launching firefox and thunderbird from a terminal: no errors or output of any kind are printed to the terminal even when the application window does not appear. Launching Firefox in safemode does not appear to have any influence.
    I saw a similar bug report on the mozilla website dating back a few years (version 3.0 I believe of Firefox). But I didn't see any links to a solution or explanation of the problem.
    Any advise on how to debug this?
    Thanks in advance.
    (I appoligize if this has already been addressed somewhere else. My search attempts did not yield any relevant hits.)
    EDIT: marked as solved
    Last edited by bsilbaugh (2012-03-14 23:23:52)

    I recently did a full system update, which includes a kernel upgrade (from 3.0 to 3.2), and the symptoms have disappeared. Firefox and Thunderbird appear to be functioning normally.
    It's still not clear what was causing the original problem. I guess I'll just have to live with the mystery.

  • Why the -- dont work when i am logged in on linux terminal.

    Why the <-- dont work when i am logged in on linux terminal.
    when i press <-- (left) when i am logged on sqlplus on linux i only get
    SQL> ^[[D
    please tell me how i change this..
    hugs Gökhan

    Why the <-- dont work when i am logged in on linux
    terminal.Is "<--" your "Backspace" key or the "left arrow" key ?
    On the command line:
    1. If you want to set your "Backspace" key to delete the previous character, then run this:
    $ stty erase ^H
    2. For the "left-arrow-key-not-working" issue, you may want to try this:
    $ stty sane
    hth,
    pratz

  • Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. This doesn't work because Firefox is not a running process so I can't close it.

    I don't use Firefox now because of this running problem. It started about a month ago. So when I access the task manager, Firefox does not show up in the running processes. Because of this, I can't end the task. I got tired and fed up of rebooting my computer just to use Firefox, so I just switched to IE8, and Opera and Google Chrome. I prefered Firefox but it also runs so so sooooo slowly now. IE is much much faster, as are the other browsers now. Once upon a time, I bragged to everyone about how fast Firefox used to be, where now I admit I don't use it because it's so slow now and it won't run anyway.

    See:
    * http://kb.mozillazine.org/Recovering_a_missing_profile
    * http://kb.mozillazine.org/Profile_in_use

  • Loss of keyboard focus in Java appl running under linux

    I have a small sample program that replicates my problem. When this program is run a window is created. If you select File->New another instance of the program window is created. Now if you try to go back and bring to front the first window, keyboard focus is not
    transferred when run under linux. You can only type in the second window. The expected behavior does happen in Windows.
    > uname -a
    Linux watson 2.6.20-1.2933.fc6 #1 SMP Mon Mar 19 11:38:26 EDT 2007 i686 i686 i386 GNU/Linux
    java -versionjava version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
    javac -versionjavac 1.5.0_11
    import java.awt.event.*;
    import javax.swing.*;
    class SwingWindow extends JFrame {
        SwingWindow() {
         super("SwingWindow");
         JMenuBar menuBar = new JMenuBar();     
            JMenu fileMenu = new JMenu("File");
            JMenuItem newItem = new JMenuItem("New");
            newItem.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent event) {
              SwingWindow.createAndShowGUI();
         fileMenu.add(newItem);
            menuBar.add(fileMenu);
            setJMenuBar(menuBar);
            setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);       
         JTextField text = new JTextField(200);
         getContentPane().add(text);
         pack();
         setSize(700, 275);
        public static void createAndShowGUI() {
            JFrame frame = new SwingWindow();
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    You can implement the FocusListener interface. When
    the first JFrame gains focus, call
    text.requestFocusInWindow(). I hope this helps.The call requestFocusInWindow is not helping, perhaps even making it worse.
    The problem seems to be that I am in the situation where the call
    KeyboardFocusManager.getCurrentKeyboardFocusManager().getPermanentFocusOwner()
    is returning the expected Component. The problem is that the KeyListener class that is registered with the Component is not being called when a key is being pressed.
    The issue is that I have a component that has the keyboard focus, but the KeyListener class
    is not responding.
    This seems to be a linux only problem which makes it only mysterious.

  • Need to run RemoteDesktop from JSP file, WebServer Running in Linux.

    Hi All,
    i want to run a RemoteDesktop(.RDP) from a JSP page, webserver is running on Linux.
    Like i am having abc.rdp file, when i am invoking this file from the jsp, it is displaying the content of the abc.rdp file.
    instead of that i am using MIME, following is the snippet i am using.....
    String filepath=path+objId+".rdp";
    FileInputStream fis = new FileInputStream(filepath);
    System.out.println("     filepath               "+filepath);
    byte[] bytes = new byte[fis.available()];
    response.setContentLength(bytes.length);
    fis.read(bytes,0,bytes.length);
    javax.servlet.ServletOutputStream Pout = response.getOutputStream();
    //String string = new String(bytes);
    //Pout.println(string);
    Pout.println(bytes);
    Pout.flush();
    Pout.close();
    fis.close();
    the above code is asking me to save the .rdp file. But i want to run the .rdp file directly without asking me saving option.
    Your Views and Suggestions are valuble to me....
    Thanks
    Chiranjeevi.

    you need to configure the web browser to associate that particular file type with the appropriate action

  • How to Print to Linux Terminal

    Would anyone happen to know how to create a VI that prints to Linux Terminal.  I wish to make a test VI that verifies the RTE is working on a Linux Server and no more dependencies/Libraries are necessary.  Going to be pretty simple.  Just a VI that, when ran, will write "Hello World" to terminal then close.  All of that is pretty easy of course.  I just don't know how to print to Terminal.
    Remember, code does exactly what you tell it.

    I don't have a linux system to test on, but it seems like you could modify this comunity code sample to do what you're looking to do.  Have a look: https://decibel.ni.com/content/docs/DOC-40941

  • IO no longer works when running on Linux

    Hi everyone,
    I have some code which was originally developed and running on a Windows environment, now I am trying to get it working under Linux. Some of the JSP file which output data as text files do not display correctly, I assume that if I change the JSP files to the UNIX newline characters this will fix the problem?
    The other issue is that there is some code which saves data to a file, the directory given may be local or on a network. It worked fine under Windows, but throws an Exception below when running under Linux even when using the UNIX like path structure (/machinename/dir/dir/filename). The code is below:
              byte[] data = /*method that gets the data to save*/;
              String fileDir = this.addExtraBackslashes(config.getOutputDirectory()); // getOutputDirectory sets the directory String
              String filePath = fileDir + fileName; // String fileName is set elsewhere in this code
              FileOutputStream fos = null;
              try {
                   fos = new FileOutputStream(filePath);
                   fos.write(data);
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   throw new Exception("Error saving file:-" + filePath +", please check the output path in the configuration", e);
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   throw new Exception("Error saving file:-" + filePath+", please check the output path in the configuration", e);
              } finally {
                   if (fos != null) {
                        try {
                             fos.close();
                        } catch (IOException e) {
                             log.warn("error closing file stream:" + filePath);
         private String addExtraBackslashes(String s) {
              StringBuffer sbRet = new StringBuffer();
              for (int i = 0;i < s.length();i++) {
                   char ch = s.charAt(i);
                   switch (ch) {
                        case '\\':
                             sbRet.append('\\');
                             sbRet.append(ch);
                             break;
                        default:
                             sbRet.append(ch);
                             break;
              return sbRet.toString();
         }Anyone have any ideas of what could be the problem and possible solutions?
    Thanks,

    People would have more of an idea if you posted the full exception text and a clue as to which line it was thrown from.
    Also, WTF is with all the addExtraBackslashes stuff? It looks like it's going through and doubling-up each \ character. I'm guessing this won't do anything on Linux if you've configured your paths to use / instead, but even so, what did it do on Windows?!
    And what are the values of fileDir and filePath? Does fileDir end in a /? Instead of having to worry about that, you could use new File(fileDir, filePath) to construct an abstract path and pass that to your FileOutputStream.

  • Plugin-container and Flashplugin are both generating a million reads and writes an hour... even when Firefox is minimized and running no audio/video; how can I

    I am running FF 18.0.2 on a Win7 system with an i7 CPU and 8GB RAM. My Flash plugin is newly-updated. I've used Firefox on this machine its entire life (3 years).
    Since 3 or 4 (?) versions ago, I've been getting massive activity on my hard drive with Firefox. When I check with Win Task Manager, I see the plugin-container.exe *32 and the FlashPlayerPlugin_11_5_502_149.exe *32 processes are generating millions of I/O reads and writes, even while Firefox is idle (minimized, running no audio or video). On this latest version, 18.0.2, the drive activity stalls out YouTube videos repeatedly, even though I can see they're buffered ahead. The playing video will stop, audio will continue to end of buffer, and then EVERYTHING stops (Firefox not responding) for 30 seconds or so. It will then pickup again and play until it repeats the same pattern in a minute or so.
    Example: I closed and restarted Firefox 2 days ago. Earlier today I checked Windows Task Manager and found the two processes EACH generated about 161 million reads and 141 million writes since then! My wife's laptop is showing nothing like a hundredth of that.
    The constant drive activity is slowing down all programs outside of Firefox too, as you might imagine. The PC is acting like it's a dedicated machine for Flash.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I lost all my unpinned 30 tabs and could not restore it, when Adobe update opened a link by firefox, which was not running in the background.

    I lost all my unpinned 30 tabs and could not restore it, when Adobe update opened a link by firefox, which was not running in the background.
    I guess what I have experienced might be a special case of 'Restore previous sessions'. The actual situation was that after I rebooted my laptop, Adobe update jumped out indicating an update being finished successfully. After I clicked on the 'close' button of the Adobe window, it automatically started firefox and linked to its website. But I did not find the 'Restore previous sessions' page this time. Then I restarted firefox, this time there was a start page with 'Restore previous sessions'. However, sadly enough, it is only restored my pinned pages plus the Adobe website. Actually, I am using 'bookmark all tabs' from time to time to secure opened tabs, but this time I did not expect such an incident. I would suggest to improve the 'Restore previous sessions' with multiple time tags and appear in all cases including my reported case here, after updating firefox, crashes etc. I like firefox in most occasions, therefore believe and hope it becomes better and more robust. Thank you very much!

    Hi,
    Please see the following support request: http://forums.mozillazine.org/viewtopic.php?f=38&t=2628065
    I think the best option would be to leave feedback here to let the relevant development team know about the problem you have had: https://input.mozilla.org/en-GB/feedback
    Also you could try the [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager] add-on which gives more control over how sessions are restored.
    I hope that helps

  • I cannot update my firefox. I am running on MAC OS X 10.6.8.

    I cannot update my firefox. I am running on MAC OS X 10.6.8. I will begin the update process but it will never complete it - often crashes before it finishes the process. Any recommendations?

    If there are problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 17.0.1: http://www.mozilla.org/en-US/firefox/all.html
    *Trash the current Firefox application (e.g. open the Applications folder in the Finder and drag the Firefox application to the Trash) to do a clean (re-)install
    *Install the new version that you have downloaded
    *https://support.mozilla.org/kb/Installing+Firefox+on+Mac
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

Maybe you are looking for

  • Many Third Party Apps crash when interacting with Finder

    Hi everyone, I am having a bit of an issue with OS X Mavericks v10.9.4. Lately, whenever I try to do any 'Finder interactions' (Open, Save, etc) with third-party apps like Google Chrome, Brackets, and Photoshop*, it instantly shuts the program down,

  • When I attempt to open a pdf it does not open and then it opens a new tab over and over again, how do I stop this?

    When clicking on a pdf file it does not open and then it opens hundreds of tabs. The only way to stop it is to shut off the computer.

  • No (v)FAT support in Kernel26-ck [Solved]

    When I build a kernel I always use menuconfig to set it "right". But at one point my SD card wasn't recognised anymore. So next time when I built the kernel I specified to build SD/MMC support as module and then chose things in the submenu that I tho

  • [SOLVED]af:tableSelectOne help

    <af:tableSelectOne text="Select and"                    binding="#{backing_site_empSearch.tableSelectOne1}"                    id="tableSelectOne1" autoSubmit="true">   <af:panelGroup partialTriggers="tableSelectOne1">     <af:commandButton text="#{r

  • Use of public access modifier in main method

    I want to know what is the significance of public access modifier with main (String args[]) method. Like generally we write public static void main(String args[]) But if we write private static void main(String args[]) OR protected static void main(S