General :: Having Only One Instance Of Search Results?

Oct 6, 2010

having only one instance of my search results

View 5 Replies


ADVERTISEMENT

OpenSUSE :: Apt-Get Search Yields No Results

Jun 5, 2010

I've just installed OpenSUSE. I've never used it before. I typically use apt-get to install applications when using Ubuntu; so I'd like to use it with OpenSUSE. I've read some documentation saying that I need to go to YaST -> Software and search for "apt" or "synaptic." However, both of these searches yield no results. Additionally, using the Software Manager to search for these yields no results. What can I do? When I search for something in OpenSUSE and there are 0 results, I get HTML bold tags around the search criteria where it says there are no results (as in, I can actually see the code for the bold tag).

View 9 Replies View Related

Programming :: Get Search Results To Array By Awk?

May 5, 2010

I have this multiline variable code...

View 5 Replies View Related

Ubuntu :: Synaptic - Mark ALL The Results Of The Search?

May 29, 2010

Open synaptic. Type in the word "Game". Then you have to scroll down through the list of results and mark each one, individually. Is there any way that I can simply mark ALL the results of the search? There is an "Unmark all" button. Can we get a "Mark all" button? It would have to mark only those packages that currently appear in the right hand box.

View 3 Replies View Related

Ubuntu :: Bash - Open Mlocate Search Results?

Mar 22, 2011

Upon a while of searching, I think I failed to find the correct terms and I'm posting here. I often use mlocate to search for files. For example, if I say

Code:

$ mlocate temp_2.pdf

I'll get two results:

Code:

/home/kmc/Documents/latex/temp_2.pdf
/home/kmc/Documents/latex/test/temp_2.pdf

Now if I want to open one of them, I'll have to either open Acroread and browse to their locations. Or select and copy, and call acroread in terminal like

Code:

$ acroread /home/kmc/Documents/latex/temp_2.pdf

This is tedious to me. I'm thinking of a way of quickly open its search results, I've tried pipes like this but it doesn't work:

Code:

$ mlocate temp_2.pdf | acroread

maybe it doesn't work this way. So what does the trick? What's the name of this trick? I've googled for

Quote:

Linux bash catch output, pipe output, open mlocate results And is it possible to handle multiple lines of output, e.g., can I choose which line of output get forwarded to relative programs?

View 9 Replies View Related

Ubuntu :: How To Clear Search Results Of Files And Folders

May 14, 2011

I am using Files and Folders search application in Ubuntu 11 recent version. App that shows up on side. However I am not sure how clean its search result. I do not see any option.

View 2 Replies View Related

Ubuntu :: Unity Application Search Results Include Non-working Shortcuts?

Jul 12, 2011

I'm running Ubuntu 11.4. I've played with different versions of Picasa, installing the Linux version via Ubuntu Software Center and also using Wine. At a certain point I had several versions of the application installed and things were getting. When I search for Picasa in the Unity application search field (clicking the button with the dot in the centre at the top left of my screen) I got several results for Picasa, some of which when clicked would start Picasa and some which wouldn't. When I remove all versions of Picasa both from Wine and native I still get some results for Picasa which don't start Picasa when clicked.

View 2 Replies View Related

Ubuntu :: 11.04 Unity Dash Menu Not Showing Search Results / Buttons Not Working

Apr 29, 2011

I've just upgraded to 11.04 and really like it so far, everything seems to be running smoothly and I had no issues apart from a broken Emerald which I removed (and installed compiz-gnome and then made gtk-window-decorator the default, which fixed Unity segfaulting on Emerald).

My problem now is that when I use the Unity dash to search for something, it takes a while to search and then finds nothing. I'm pretty sure I should have things like "text editor", "gimp", "update manager", so I would think this is some manner of bug.

In addition to that, the following buttons don't do anything if I click on them:

- Media Apps
- Internet Apps
- More Apps
- Find Files

View 9 Replies View Related

Ubuntu :: Links From Widgets - Task Bar Shows An Instance Of Konqueror And Another Instance Of Firefox

Feb 15, 2010

I have KDE 4.4 and Firefox 3.6. Whenever I click a link from a plasmoid widget, it tries to open Konqueror and another instance of Firefox. The page actually loads in the opened Firefox window, but the task bar shows an instance of Konqueror and another instance of Firefox, that keeps loading for a while then close. See image below:

I currently have setup the browser default application as "firefox". If I set this option to use the default application, it opens in Konqueror and I don't see additional windows in the task bar. If I change the option to "firefox %u", then it exhibit the same issue, but the process is much faster, so the loading windows don't stay for long in the task bar. Additionally, it opens the link on a new Firefox window and opens the page twice. Although Konqueror is not loaded, the bouncing icon next to the mouse pointer shows up and stay for a while.

View 1 Replies View Related

Programming :: Search Within A Variable And Assign The Results To A New Variable?

Apr 25, 2011

how I can search within a variable and assign the results to a new variable. I'll use the following as an example -

cars="Audi BMW Cadillac Chevy Dodge Ferrari Ford Mercedes"
list=`echo ${cars} | egrep -o '<A?+|<C+'`

with the echo command I get the following output assigned to list -

A
C
C

What I'd like to get for output is -

Audi
Cadillac
Chevy

how I could do this regardless of upper/lower case letters?

View 5 Replies View Related

General :: Saving The Results Of The Time Command While Discarding The Results Of The Command Being Timed

Apr 6, 2010

I'm timing how long it takes to run a command foo. I'm looking to append the results from the time command to a file, and discard the results from the foo command. I tried the following, but it didn't do what I want:

$ time ./foo > /dev/null >> output_from_time_command.txt

View 1 Replies View Related

General :: Sed To Replace First And Second Instance?

Jul 17, 2011

I might just be crazy or particularly dumb today but what I'm trying to do is have sed replace the first and second instance of a character on a line but not after that.

Basically it is a csv file with a date formatted as dd/mm/yyyy and I need to completely remove the slashes. No problem using:

Code:
sed 's////g' < file > outputfile

The only problem is that one of the columns after this may also contain these slashes and shouldn't be removed.

I must have read every single sed page on the net today to find a way to do it to no avail! Is it as simple as :

Code:
sed 's////1' < file > outputfile

And then run the same on the output file again? these two slashes will always be the first and second slashes in the file.

View 6 Replies View Related

General :: Way To Get Docky To Launch A New Instance?

Apr 22, 2010

So i'm really loving the whole gnome-do/docky thing. My question is that on other docks, you can hold down a modifier key to launch a new instance rather then switching to an already opened instance of an app. So lets say I have chrome on the win7 dock

first click launches chrome
other clicks will focus the opened window
shift click will open a new instance of chrome
ctrl-shift-click will launch a new instance as admin

Is there anything similar in docky?

View 2 Replies View Related

General :: Dumping An Instance In System?

Aug 16, 2010

What is dumping an instance in linux?

View 1 Replies View Related

General :: Get Bash History From Another Shell Instance

Aug 18, 2010

Possible Duplicate: Can history files be unified in bash? I have bash running in an ssh session, call this session A. I leave the office, go home, ssh to the same box, call this session B. From session B, I'd like to be able to look at the history of session A.

View 1 Replies View Related

General :: Can Take Vm Instance And Move It To Bootable Disk?

Mar 17, 2011

The performance of my suse install under Virtual Box is starting to affect my work, and I really need access to my real multi core CPUs - can I take my vm and stick it on a bootable SD or external HD?I've read the howto move existing linux installation to usb-flash and make it bootable? but it didn't work for me (I'm not convinced I copied correctly).

View 1 Replies View Related

General :: Start Another Firefox Instance On Windows?

May 16, 2011

e.g.: I don't want to use Firefox Add-ons, and I need to be logged in several places [via HTTPS in ff], but it requires several proxys (so I don't want to install e.g.: foxyproxy).How can I exactly start several Firefox instances, so that I could use several proxys?

View 2 Replies View Related

General :: Amazon Ec2 - Install PHPMyAdmin On EC2 Instance?

May 31, 2011

I just finished setting up a default Linux EC2 instance and would like to install PHPMyAdmin. I already have Apache and MySQL installed but cannot seem to install PHPMyAdmin. I tried using

sudo apt-get phpmyadmin but the command apt-get is not recognized.

I also tried sudo yum install phpmyadmin but that I get the message No package phpmyadmin available.

View 2 Replies View Related

General :: Using Locate - All Paths That Contain Element /bin/ But Only One Instance Of Each One

Jun 18, 2010

I want to print, using locate, all the paths that contain the element /bin/ but only one instance of each one. If I issue 'locate /bin/' then I have many screens of text with, for example,

/usr/bin/foo1
/usr/bin/foo2
/home/me/bin/foo3
whereas I want to see only
/usr/bin/foo1
/home/bin/foo3

That is to say, if in two lines /bin/ appears with the same prefix (in the example above the prefixes would be /usr and /home/me) I only want to print the first line. Can I pipe locate to grep to do this? I've mentioned locate because it does not scan the whole disk.

View 5 Replies View Related

General :: Difference Between Bleed And Bounce Of An Instance?

Aug 16, 2010

What is the difference between bleed and bounce of an instance

View 10 Replies View Related

General :: Administer Each Of The Servers From One SWAT Instance?

Sep 16, 2010

I have a few different Linux servers with samba shares on each of them. Is it possible to administer each of the servers from one SWAT instance?

View 1 Replies View Related

General :: Get Amazon EC2 Instance Operating System Info?

May 31, 2011

I just setup an EC2 instance running Linux. Is there a way to get the version/distribution of Linux that is running on the instance via the terminal?

View 3 Replies View Related

General :: Unable To Sent Emails To Some Domains For Instance Yahoo.com

Sep 13, 2010

I have s smtp configured server , the problem i am facing is that i am not able to sent emails to some domains for instance yahoo.com or ymail.com rest all domains the email goes through

[Code]...

View 4 Replies View Related

General :: Activate Skype Already Running In Taskbar Instead Of Opening New Instance?

Jan 19, 2011

I am setting up a laptop for an old person who has trouble locating the skype icon in the notification bar.
I want clicking on the skype desktop icon to open the window of already running instance instead of a new one (like it happens in Window$).I am using Lucid puppy 520.

I want the icon to link to script which checks if skype is already running, and if it is, it de-iconifies the skype window

View 2 Replies View Related

General :: Closing File While Leaving Instance Of Gedit Open

Apr 19, 2011

If a file is opened from the common prompt with something like:
gedit somefile &
Is there a way to close somefile while leaving the instance of gedit still open? My idea is that sometimes I will have more than one file open in gedit. I run a script daily that updates to a log file. The log file is then opened and viewed with gedit.

View 5 Replies View Related

General :: Delete Duplicate Lines Without Removing First Instance Of That Line?

Feb 7, 2011

I have a file "test.txt" with following data

#1
aaa
#2
bbb
#3
aaa
#4
ddd

I wanted it to be displayed as

#1
aaa
#2
bbb
#4
ddd

I used awk "'!x[$0]++' test.txt > file.new"
,but it deleted #1 also.I tried using uniq command but i didn't work.
Can anyone Please let me know is there any way to do this using shell script.

View 2 Replies View Related

General :: Make A Launch Command Set Focus To An Already Running App Instance In Ubuntu?

Feb 11, 2010

I'm using a program called easystroke to invoke commands from mouse gestures - typically to launch an application. 'gnome-terminal', for example. If I already have a gnome-terminal window open, and I invoke the gnome-terminal gesture, I'd like to be setting focus to the already running instance, rather than spawn a new instance, which is of course what happens now. (I am actually more interested in this for my gmail chrome app shortcut, and other larger apps.)

I'm very new to ubuntu and linux in general, but I was hoping there might be a nifty command I could wrap around my launch command that would produce this behavior. (I'm imagining some kind of singleton app list keeper program that consumes my command line, checks if it's already in the list, transfers focus to the running process if it is (and if that process is still running), or else spawns a new process and then adds it to its list using the the command line as a key.)

View 2 Replies View Related

General :: Kill A Xterm Instance In Tiny Window Manager Using Mouse Pointer?

Aug 10, 2010

The only way I know is to use exit command to come out.

Is there some way to close the Xterm windows using the GUI (the mouse pointer)? Killing a lot of windows would be easier that way.

I am using Tiny Window Manager.

View 2 Replies View Related

General :: Different Results In Du And Df?

Oct 29, 2010

I was checking /opt and then found something unusual. Below are the results of du and df -h,

Code:
$sudo du -h /opt/|tail -3
1.1G /opt/IBM

[code]....

View 2 Replies View Related

Fedora Installation :: Apt-get Search Wget Saying Invalid Operation Search?

Apr 5, 2011

i guess this is an installation issue as i am newish to Linux and got a F14 laptop from a used/refurb store... Anyway it seem i have difficulty with getting GTK running or maybe it is WGET...?

i did manage to install apt-get and was able to run synaptics ... but now whenever i try to run synaptics it flashes the interface and crashes. i tried apt-get search wget and it says invalid operation search. i tried apt cache wget and get a crash box in the upper right corner... i tried apt-get gtk+extra-2.1.2-4.fc14 and it says invalid operation gtk...

All of which is frustrating my attempts to get the GTK interface to J working. Their script uses WGET which i also cannot get.

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved