Fedora :: Add A Folder To The Overview For Quick Search?

Jun 4, 2011

Assume that I've got a folder called "Stuffs". So in fedora 15 you don't have a desktop folder, I mean you can't use it like we were used to. Even if you activate the option that allows you to use the "desktop", it is very uncomfortable because you can't minimize windows quickly. So my question is: Is there a way of put a "Link" in the overview, so I can get in to the overview and write "Stuffs" in the search bar and get my "Stuffs" folder open ?

View 2 Replies


ADVERTISEMENT

Ubuntu :: Removing Yahoo Quick Search From FF

Apr 8, 2010

How do I accomplish this?

View 6 Replies View Related

Ubuntu :: Synaptic Quick Search Doesn't Work?

Jun 7, 2010

I just upgraded my computer to Ubuntu 10.04 Lucid. Whenever I open Synaptic Package Manager it opens normally. If I type into the "Quick search" box, when I try to type in a word as soon as I type the second letter Synaptic immediately closes. However, if I click on the full "Search" button, this function works as it should. I just can't use Quick Search. Synaptic closes every time.

I uninstalled synaptic from a terminal by typing [CODE] apt-get remove synaptic. Then I reinstalled using [CODE] apt-get install synaptic. Reinstalling did not fix the problem. Does anyone have an idea how to fix this?

View 5 Replies View Related

Programming :: Construct A Quick Regex That Will Search For Six Lines Of Text

Apr 25, 2011

I am trying to construct a quick regex that will search for six lines of text without a clear line break between them. It only needs to search, not replace, as I will be using in gEdit (with regex plugin) anyway.

It's for editing subtitle files. The video player I will be using them on can only cope with 3-line subtitles, so I just need to edit any in the srt file that contain four or more. There won't be many so I can do it manually. For example:

26
00:01:47,357 --> 00:01:49,359
a motivated business
professional with
clearly defined goals.

[Code].....

but .* seems to mean "any character, or none", so that doesn't work. My experience of regular expressions is limited, but I do know they are very powerful when used correctly!

View 10 Replies View Related

Fedora :: Wrap Icon Label Text In Overview?

Jul 4, 2011

how to wrap the text in the overview for the icons I tell you I love opensource. Straight from some of the guys who wrote gnome shell, and yes the reason it was left out by default is because it has some quirks. Yes it wraps text - however if you have long words - like this_file_has_no_spaces then it will overflow into the icon on either side of it. But most application names have spaces. The obvious place you will see this happening is in recent items where that displays system files etc. The other issue is that when you hover/highlight an icon it will only highlight the first line of text. That's pretty much it and with a few lines of code then you can increase the font size of applications and don't have to worry about names getting cut off

[Code]...

View 4 Replies View Related

Ubuntu :: Add Home Folder To Quick Launch?

Dec 13, 2010

How do I add home folder to quick launch

View 4 Replies View Related

Red Hat / Fedora :: Shell Script To Search And Copy Jpg To Another Folder

Jun 3, 2009

My manager askmed me to find out all the jpg files in a directory and copy to another destination directory.I tried to write a shell script.But the problem is this source directory contains thousands of subdirectories. The jpg files resides in all of these directories.We have to search inside all these sub directories.I am reallyconfused.Can Any one help me.I am only a beginner to Shell scripting.

View 1 Replies View Related

General :: Ubuntu - Quick Folder Access - Akin To Launchy

Apr 2, 2010

Launchy is a great piece of software, I use it on Windows mainly for quickly accessing folders. I love its auto-indexing in the background, and hardly ever browse through folders manually these days, solves me lots of time.

On Linux (Ubuntu 9.10), I usually "live" in the terminal, however. Therefore, Launchy on Linux (or Gnome Do, or its other replacements) are not what I need - as it opens the file manager, and I don't need the file manager.

What I do need is something that indexes my folders and lets me cd into them quickly in the terminal. For example:

View 3 Replies View Related

Ubuntu :: Search For Folder ?

Jan 13, 2010

How do you search for folders in Ubuntu? The find function is great at locating files, but is ignoring folders that I know exist on my computer, even when I add the "Show hidden files" option to search. Same with entering find or locate in terminal.

View 5 Replies View Related

Server :: Get Summary Overview Of All The Md-devices At Once With Mdadm

May 13, 2010

I'm performing some experiments on a box with 5x36,4G disks. Right now I have partitioned all the drives in chunks of 1G, and put them together 3 by 3 in raid5. (Yeah, there's a lot of md-devices..). 'mdadm --query' and 'mdadm --detail' give summary/detailed information about the md's, on condition that I specify the device.

My question is if there would be a way to have a summary overview of all the md-devices at once. I've gone through the manual, but haven't found anything which resembles a useful command.

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

Ubuntu :: File Search On Home Folder?

Jul 11, 2010

I can't search file in another folder other than the home folder. Like when I try to search in my mounted NTFS drive, it only shows and only searches my home folder, not the current open folder in mounted drive. I also have installed "Beagle Search" to index my data and reduce time searching,

View 2 Replies View Related

Ubuntu :: Search Files Containing Text Within Hidden Folder

Mar 6, 2010

I have a hidden folder with a lot of text files in it. I would like to search in this folder for all files containing a given text.The File Browser's" FIND searches only in the file names, not in their contents.The FIND function of Ubuntu does not allow me to search ONLY in the given hidden folder. So, how can I find my files within the hidden folder with the given text within them?

View 7 Replies View Related

Programming :: Find Command To Search For All The File In The Particular Folder?

Aug 2, 2011

how to use find command to search for all the file in the particular folder?my script as below

find . -name "*" > $BASE/file
if [ `more file | wc -l` -gt 0 ]; then
echo "dp"
fi

output of my results will always include a . (dot)which I dunwan it include the dot.

View 11 Replies View Related

Programming :: Multi File Recursive Folder Search And Replace?

Aug 3, 2010

I'm wanting to mod some PHP files across a hierarchy and thought I'd drive it with find + grep + xargs

I built up a command line which I was confident would do the job, but now can't save the results.

First I tried this:

Code:
find . -name *.php | xargs grep serialize | cut -d: -f1| sort -u | xargs sed -i s/serialize/serialise/g
but that didn't work:
Code:
sed: illegal option -- i
so I thought I'd try using
Code:

[Code].....

View 10 Replies View Related

Fedora X86/64bit :: Quick And Easy Way To Install 32-bit?

Sep 21, 2009

Is there a quick and easy way to install 32-bit software on my 64-bit Fedora 11 machine? I've got some software that is 32-bit but can't use them because I lack those library files etc. needed to run them. The programs I'm trying to get to work are : LightZone 3.7 and Bibblepro both photo software.I'd hate to go back to Ubuntu 9.04 64-bit (it worked and all that was need were ia32libs I believe.)

View 5 Replies View Related

Fedora :: Quick Edit Mode In Terminal

Mar 8, 2010

How could I add quick edit mode in fedora terminal?i.e. In terminal, if highlight a word and and press enter, it will copied to clipboard and click mouse right click, I should be able to copy like if we enable quick edit mode in Windows.

View 2 Replies View Related

Ubuntu :: Liferea - Download Podcasts - 'Unread' Search Folder To Display All Feeds From All Subscriptions?

Mar 2, 2011

I'm about to make the switch to Ubuntu but what's holding me back is Liferea. From what I've read it's by far the best RSS reader but I'm having three major problems with it...

1) I am trying to get Liferea to download podcasts that I subscribe to. I've set my download folder in preferences, and I've set the feed to automatically download enclosures in the advanced tab of the feed folder. Nothing is downloading, why?

2) I want the 'Unread' search folder to display all feeds from all subscriptions (read or unread) apart from those in the Podcast folder I've created. How do I do this?

3) I read an article in a feed and delete the article. When the feed updates, the article returns - how do I keep it deleted?

View 2 Replies View Related

Fedora Security :: Gui Ids - Display A Quick Little Notification On The Bottom Right Hand Corner Of Screen

Apr 6, 2009

I might get harassed for making this windows/linux comparison, but i'm seriously wondering why i cant find any application that can display a quick little notification on the bottom right hand corner of my screen whenever there's some intrusion attempt.

For example, sometimes I can see that in my /etc/logs/secure (or something like that) there's someone who's trying to attempt to connect to me using random usernames/passwords from different servers. The only time I know this has happened is when i actually open the file with gedit. Is there anything like (norton for windows) that can display little notifications (with or without eye candy)??

View 4 Replies View Related

Fedora Installation :: Grub / Try To Boot - Flashes A Quick Blue Screen & Restarts

Jun 26, 2011

I don't really have any Linux experience. But I wanted to try it out. Now I'm afraid I did not set this up properly. Grub gives me 3 options:

Fedora (2.6.38.8-32.fc15.x86_64)
Fedora (2.6.38.8-26.rc1.fc15.x86_64)
Other

When I select <Other> to boot into windows... it starts to try to boot... but then flashes a quick blue screen & restarts. I tried to boot into Window's normal mode, safe mode, and command line... all just restart fdisk -l gives the following:

[Code]....

View 4 Replies View Related

Programming :: Search A Bunch Of Files In A Specific Folder For A Specific Number?

Jul 24, 2010

I need to search a bunch of files in a specific folder for a specific number and add all the numbers together to a total sum. I use Rsync everyday, everytime I run rsync i get a logfile (rsync output) witch contains the textstring "Total bytes sent: xxxxxx".

The "xxxxx" can vary in lenght. I need to extract the "xxxxxx" from each file and add the numbers together to a total size over a week or a month. Is this possible? And I wish to only use bash. One way of doing stuff at a time my friends .

View 5 Replies View Related

Fedora :: Want To Right Click Folder In Nautilus To Open Terminal To Folder

Feb 19, 2010

I basically am hoping for a line of bash script I can put into "Open With" for folders so I can get a terminal with the right path. I hate manually typing in paths to places when I am looking right at them in nautilus. "gnome-terminal" doesn't work - it just opens a terminal to ~.

View 3 Replies View Related

Red Hat / Fedora :: Chmod - Give A Mounted Folder /mnt/folder Access

Oct 28, 2010

I want to give a mounted folder /mnt/folder access so that 'root and the group test have read write access' and all other users have read access I understand most of the chmod command, the users groups world etc but where in the 'command' do you specify which 'group' or 'user' you are giving the read / write access to? in all the tutorials i've seen no where do you specify the actual group or user.

View 3 Replies View Related

Fedora :: Using Search With Yum In - 14

Feb 2, 2011

When i use search command with yum,i get a lot of error messages and then the correct result.

The output at terminal is as follows:

View 4 Replies View Related

OpenSUSE :: Get A Message That Says 'Search Service Not Running' With A Button That Says 'Start Search Service'?

Jun 12, 2010

The desktop search has stopped working in Gnome.I get a message that says 'Search Service not running' with a button that says 'Start Search Service'.When I click the button nothing happens

View 1 Replies View Related

Ubuntu :: Desktop Search Dead \ Trying To Find A Good Desktop Search Tool?

Jun 16, 2011

I'm trying to find a good desktop search tool. Beagle is dead, Recoll and Strigi are KDE, and Tracker is not many features (can't even search Thunderbird 3). Do I miss something? Is desktop search on Linux dead? Should I use Google Desktop Search instead

View 2 Replies View Related

Ubuntu :: Quick Ssh Command?

Jun 23, 2010

I want to ssh into my media folder on server I,m missing something

Code:
ssh username@server:?

View 9 Replies View Related

Fedora :: What Is Folder Limit For Each Folder

Nov 16, 2009

I want to know how many folder I can create in one folder.

Also I want to create more than 200,000 folders in one folder. Is it a feasible option to go with.

View 7 Replies View Related

Fedora :: In Search Of Libstdc++6?

Feb 23, 2010

I'm using fedora 12 and I would like to install komodo editor, whose documentation specify there is a prerequisite : libstdc++6.but accordingly to the siteit seems that libstdc++ is part of the gcc project.and g++ is in the version 4.4.3, not in the version 6

View 3 Replies View Related

Fedora :: Search Path For 'sh'?

Sep 7, 2011

I would like to run a script from any location. The script is in ~/scripts, so I added ~/scripts to my PATH. However, since I have to run it with 'sh script.sh' (due to the permissions on the directory), it doesn't seem to look in PATH for the file script.sh. Is there a way to get it to do this?

View 11 Replies View Related







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