Ubuntu :: Firefox4 Built-in Keyword Searches Are Gone
Mar 17, 2011
This used to work by default in previous versions of FF.
imdb $movie
wiki $some_topic
now they don't.
My personal favorite was
man $page
Open about:config and search for keyword.URL - it should be blank. Double-click to edit and enter
Code:
[URL] This will restore the previous Firefox keyword search behavior. No restart necessary.
View 2 Replies
ADVERTISEMENT
Dec 5, 2010
im using
Code:
scons prefix=/usr qtdir=/opt/qt4
to configure and i get these compilation errors
Code:
scons prefix=/usr qtdir=/opt/qt4
scons: Reading SConscript files ...
Platform: Linux i686
scons: warning: The build_dir keyword has been deprecated; use the variant_dir keyword instead.
File "/mixxx-1.7.2/SConstruct", line 42, in <module>
WE ARE IN: /mixxx-1.7.2/linux_build
QT path: /opt/qt4
Loading qt4 tool...
[code]...
ive been scratching my head at this one for days, i turned on the ubuntu virtual machine and checked what apt wanted to pull, and im suspecting that i need to find the source versions of several packages in regard to qt4 and libqt4 and various libqt4 extensions.
View 4 Replies
View Related
May 29, 2010
Although I use the system's default version of Firefox (v3.6), I wanted to give the Firefox4 beta a test drive, so I downloaded it from Mozilla and extracted it into my ~/bin directory. However it seems that Firefox4 is not able to pick-up the plugins installed for the system version. All the plugins currently installed for Firefox3.6 are in /usr/lib/mozilla/plugins/, with a couple of symlinks to other places, so I can't figure out why the beta is not able to find them. I thought /usr/lib/mozilla/plugins/ was a standard directory for Firefox plugins on Linux.
I also tried copying one plugin (Flash) file from /usr/lib/mozilla/plugins/ to ~/.mozilla/plugins/ and to ~/bin/firefox/plugins/, but still Firefox4 is not finding it. Aboutlugins is blank, as is the plugins tab of the Add-on manager.I'm using the same profile for both Firefox3.6 and Firefox4. Is this fine, or should I create a separate profile for use with the beta version?
P.S. For what it's worth, my system is a 64-bit one, running 64-bit Ubuntu 10.10.
View 5 Replies
View Related
Feb 6, 2011
Although I use the system's default version of Firefox (v3.6), I wanted to give the Firefox4 beta a test drive, so I downloaded it from Mozilla and extracted it into my ~/bin directory.
However it seems that Firefox4 is not able to pick-up the plugins installed for the system version. All the plugins currently installed for Firefox3.6 are in /usr/lib/mozilla/plugins/, with a couple of symlinks to other places, so I can't figure out why the beta is not able to find them. I thought /usr/lib/mozilla/plugins/ was a standard directory for Firefox plugins on Linux.
I also tried copying one plugin (Flash) file from /usr/lib/mozilla/plugins/ to ~/.mozilla/plugins/ and to ~/bin/firefox/plugins/, but still Firefox4 is not finding it. Aboutlugins is blank, as is the plugins tab of the Add-on manager.
View 9 Replies
View Related
Jul 8, 2011
For compatibility reasons, a developer do not always need the newest software version that just poped up on the market.
In my case, right now, the WebDriver Test our Selenium Test framework doesn't work on Firefox5 that i automatically got thanks the Ubuntu Update manager. I had to search few hours on Internet and finally ask a more experimented college which told me about this solution:
first of all, uninstall firefox5:
Code:
sudo aptitude purge firefox
then, you can list the available software versions : sudo apt-cache policy <software_name>
Code:
msauvette@msauvette:~$ sudo apt-cache policy firefox
firefox:
Installed: (none)
Candidate: 4.0+nobinonly-0ubuntu3
[code]....
View 3 Replies
View Related
Mar 15, 2011
Or, r we just gonna wait for the final release which isnt far away anyways ; by the way, on mozilla 's site, i only see i686 source code, im using opensuse 11.4 64bit,so wondering if there is a 64bit version
i prefer having it in the repository, but i can just build it myself
View 9 Replies
View Related
May 16, 2010
I have some problem, the gparted 'searches' for ever on one disk only, even after 20-30 mins it is not finished and it has to be stopped manually.
Tried the same with debian, which has gparted 0.38, and the all works fine.
View 2 Replies
View Related
Sep 20, 2010
whenever Ubuntu boots, it searches for an external hard drive that I no longer have plugged in. It hangs on the Ubuntu load screen for a while, then says that it cannot find the drive and I have to press (S) to skip the attempt.
View 4 Replies
View Related
May 5, 2011
I'm trying to use Debian Stable with some newer upstream packages. I've got the upstream Firefox tarball unbacked in /home/firefox/. The problem is that it can't find any plugins, flash or anything else. It's the 64 bit binary but still needed some 32 bit libraries to run. Does it need 32 bit plugins?
Iceweasel is uninstalled and and I deleted it's ./mozilla/ directory. I tried creating a /home/.mozilla/plugins/ directory and symlinking plugins into that and pretty much any other conceivable path where it could be looking for them.
I run upstream firefox from /home/ in the past and had no problems.
View 3 Replies
View Related
Jul 27, 2010
Linux kernel 2.6, Slackware 12.0
How do I set case insensibility in searches running vim? I thought I could find this in the manual or the in browsing help within the program itself, but it was not long before I realized I was mistaken.
View 5 Replies
View Related
Apr 15, 2010
I am looking for the quickest way to do multiple searches for different files.Here is the scenario: I want to search for various icons one by one in a script. Preference is for the gnome icon theme.
The echo piped into grep part seems to take a long time. Is there a quicker way of doing this?I do not want to use slocate, sqlite or the like since that will require admin privileges to update the database and/or extra dependencies.
View 5 Replies
View Related
Sep 10, 2010
I deleted the search engines in chromium and made scroogle my default search engine. (im a huge privacy nut) But with this random daily build of chromium, whenever I close it, it deletes scroogle from my default searches.
View 3 Replies
View Related
Aug 29, 2010
I absoultely cannot figure this out... No matter which browser (FireFox, FireFox4, Seamonkey, etc) I try to use, I always get this error message:
Replace "seamonkey" with whichever browser stated previously.
View 9 Replies
View Related
Jul 26, 2011
I'm trying to write a script that searches my files and lists them by date. Can someone point me in the right direction? I've been looking through the books that i have but i'm just not finding the right commands to search dates.
View 7 Replies
View Related
May 20, 2010
how to write a shell script the searches for processes running on my system. I really don't know where to start. can anyone give me a hand and explain how the script works?
View 3 Replies
View Related
Mar 23, 2011
I have several directories of subtitles for some videos, but all the text for the subtitles in each file is in uppercase, and I would like to convert the files' content to lowercase, all in one go. I found on a website a bash command that would do each file separately:tr '[:upper:]' '[:lower:]' <input.txt> output.txt but of course involves specifying the input name and output name for each file.I have been trying to do it in a script that would work for all files in the current directory, without having to rename them each time, if that's possible. So far I've got the following, which doesn't work:
#!/bin/bash
for file in $@; do
tr '[:upper:]' '[:lower:]'
done
However, my web searches cannot locate a way of specifying "each file in current directory" in conjunction with the "tr" command, but also without having to rename the file once converted to lowercase. Is it possible, or would the tr command have to create a new file for each converted file?
View 3 Replies
View Related
Jul 10, 2011
I've set up a sandisk usb stick to boot/install 11.04. On two eepc netbooks I get the same issue when I try to boot from the usb: SYSLINUX 3.63 Debian 2008-07-15 EBIOS Copyright 1994-2008 H Peter Anvin Unknown keyword in the configuration file
View 3 Replies
View Related
May 16, 2010
I need to write a script that can search up to 3 parameters and find all files containing those words. then display them and the amount of hits it got.if the first parameter exists, then we can assume we are looking for the word supplied.if the second parameter exists, then we are looking for files with both keywords.if third parameter exists test the second parameter for the values ('and', 'or', '-v') and search accordingly. These are the only values accepted as the the second one when 3 parameters are present.
lastly, if there are zero or more than three parameters echo as an error and when 3 parameters have been entered we echo an error when the second parameter is not one of the following: 'and', 'or', '-v'.
View 1 Replies
View Related
Jan 12, 2011
recently got this message when USB booting:Unknown keyword in configuration file: gfxbootI used to have the "Unknown keyword in configuration file: ui" problem, which was spread throughout the forum. I know people have fixed it by removing the "ui" in the config file. This is what I did in /syslinux/syslinux.cfg
# D-I config version 2.0
include menu.cfg
default vesamenu.c32
[code]....
View 3 Replies
View Related
Mar 24, 2011
I have a multiple txt file in one folder. I would like to remove everything from starting until find string keyword in one folder. Here is the sample of my text:
Code:
5a651a62sf1a54f2a1sf6a4f50a5f4a2f1a2d1sfs11231211f61d021sd1fs1Reassembles21f2sdf122dfs21fs212sdfdsf1s65f1s62f1
So i want to remove everything from starting until reassemble. Here is the sample output:
Code:
s21f2sdf122dfs21fs212sdfdsf1s65f1s62f1
I have multiple file in one folder. So how to use any script to read in one directory folder and do a same task. I prefer using awk, sed or perl.
View 5 Replies
View Related
Apr 15, 2010
I am using latest GCC version GCC4.4 in my linux. my code snippet:
auto const char *ostr = ((int *)node)->str;
When i compile this, i get an error as follows:
error: auto will change meaning in C++0x;
View 13 Replies
View Related
Apr 21, 2011
I want to list all installed packages by keyword. For example I want to know what packages were installed related to "game". How can I do that in Fedora?
I tried 'yum list installed', 'you search' ... but still can't find a solution. I'm not a yum expert .
View 2 Replies
View Related
Apr 10, 2011
I have a file and at some point in the file the string "DONE" appears (it's unambiguous). I want to redirect all that is coming starting from the next line to a new file. How do I do that?
View 6 Replies
View Related
Mar 19, 2010
I'm working on RHEL5 dealing with AS (ActionScript) files in Linux GVIM Editor but everything is in blue color. Can i set color coding for my keywords?
View 3 Replies
View Related
Oct 17, 2009
The owners manual of my monitor gives me the following informations:
When editing my xorg.conf, do I have to add the automatically 'keyword' ? (saw nothing about it in man xorg.conf or man nv)
View 6 Replies
View Related
Oct 25, 2010
I'm having problems installing Ubuntu 10.10 Netbook onto my Asus 900. I downloaded the .iso then used the "make startup disc" feature in my Mint 9 desktop machine to make a usb install disk. All appears well at that point. When I try to boot from the usb stick, I get an error message as follows:
"SYSLINUX 363 Debien-2008-07-15 ......
Unknown Keyword in Configuration File
boot: "
and the cursor just hangs there and doesn't respond to the keyboard.
I also tried it on another Asus and a Gateway Laptop with the same results.
My intention is to have this the sole OS on my little Asus 900.
View 4 Replies
View Related
Oct 12, 2010
Had a couple of problems installing Maverick from USB last night and figured I should share in case someone else finds themselves in the same situation.Hardware: HP 4510s 1.20GHz Duo CPUStart-out OS: Karmic 9.10Downloaded 32-bit ISO of Maverick 10.10Formatted USB drive to FAT32 using Gparted as Startup Disk Creator would not format it for me for some reasonRan Startup Disk Creator on formatted driveRebooted, opted to boot from USBAfter the boot menu but before being given any setup-related options from the Ubuntu installer, I got the following error: Quote:
SYSLINUX copyright info (I forget exact wording)
Unknown keyword in configuration file
boot: _
[code]...
View 6 Replies
View Related
Nov 13, 2010
for example we search a file for a certain keyword..is there any application available which will enable us to search for a single keyword in all the files within the folder ?i want to search for a keyword in about 1000 files..if i do it manually it will take loads of time..
View 6 Replies
View Related
Jan 17, 2010
I am running Ubuntu 9.04 on a Acer aspire one netbook with built in cam and mic, I am using skype to have Video chat but i only hear static when i did a test to the home computer, I can here voice but they can only hear static from me
View 1 Replies
View Related
Feb 6, 2010
Is there a DEB of the 2.6.32 Kernel with the BFS Scheduler built in? I'd like to give it a run, but I'm not so sure about compiling it on my own.
View 9 Replies
View Related