Ubuntu :: Desktop Keeps Crashing When Renaming Folder Under Folder View Plasmoid?

Jun 17, 2011

Running kubuntu 11.04x64 w/ xrender and folder-view plasmoid:

I cannot view "open with" for directories on the desktop (but it is visible w/in dolphin file structure) and whenever I try to rename folders on the desktop it crashes and restarts (but the rename is successful and no open windows crash).

This glitch is reproducible under OpenGL and Xrender; had to switch over to xrender after a recent system update that seems to slow my computer to a crawl after a little time and kept it cause it seems much smoother and crisper.

Is there any way to fix these issues or is there an alternative to the folder-view plasmoid to view a folder content on the desktop that is more stable?

View 9 Replies


ADVERTISEMENT

OpenSUSE :: Folder View Appl. Showing Desktop Folder - How To Add Icons

Jan 21, 2010

I have the Folder View applet on the Desktop viewing the Desktop Folder "~/Desktop"

Some shortcuts are outdated because of new installation of opensuse 11.2...

How can I add icons there in?

I can add icons to the Desktop and Taskbar but no in this Folder View on the Desktop (BTW: Is this Panel called "Folder View applet"?)

If I try to move a icon from Desktop to this Panel it is not moved in this panel it is placed behind this Panel...

And how can I get more than one of this panels for example one displays the Desktop folder other the home dir ...

View 7 Replies View Related

Ubuntu :: Possible To Instead Of Using Desktop Folder Plasmoid / Usual Desktop Act As File Manager?

Nov 12, 2010

1. Is it possible to instead of using the Desktop Folder plasmoid, have a usual Desktop act as a file manager?
2. What is Akondi? There are tons of processes which have Akonadi in their name, and it seems to be using up lots of memory.Can I disable these somehow, or is it safe to do so?
3. Any general tips on how to reduce the amount ram that is used on startup? I am using somewhere around 750MB on startup, which is about double the amount Gnome uses. After a few hours of use, Xorg uses close to 1GB of memory.
4. Whenever I get a notification, they don't delete themselves, so when I click on the (i), I see tons of notifications. Is there a way to get them to delete themselves after they have been shown?

View 1 Replies View Related

Ubuntu :: Vanishing Plasmoid Desktop Folder (KDE4.x)

Mar 20, 2010

When kubuntu is installed, there is a plasmoid desktop (a kind of transparent window that enables one to create and store links to applications). Nice and convenient.

Alas, the special desktop is easily hidden - permanently... Soon after the installation I inadvertently clicked the X on the plasmoid desktop pop up menu and that hid this special desktop.

In the file manager (Dolphin) I can still see the Desktop with all the links to applications, which are still active (I can run the applications by clicking their icons).

Surely there is a simple way to restore this plasmoid again to the view, but I just do not find how..

If you have kubuntu, you too can have "the fun" of hiding the plasmoid dekstop and then finding how to show it again. Just place you mouse pointer on the plasmoid desktop. That will pop up the menu with X, shift-spanner, turning and resize buttons. If you are brave, try to click X on the pop up menu. Bingo, the plasmoid disappears. Surely fingers more nimble than mine, would find out how to get it back... I can not.

how did you restore the plasmoid to the view.

View 5 Replies View Related

General :: Renaming Folder Which Is Default Folder For FTP Account

Feb 10, 2011

I have an FTP account that when they log in they go to /var/ftp/uploads according to etc/passwd.I want to temporarily stop the uploads from coming in, but don't want to change the password on that account. If I rename the uploads folder to something else, what will happen when they go to log in since the /var/ftp/uploads path is no longer valid?

View 6 Replies View Related

OpenSUSE :: Add Trash Can To Desktop Folder View \ Icon Change?

Feb 12, 2010

Does anyone know how to add a fully working (icon changes) Trashcan to the Desktop Folder View?I don't want the plasmoid/widget on the Desktop or on the Task Manager Panel.I can right click -> Create New -> Link to Location(URL), but the icon doesn't change.If the Desktop Folder View is a plasmoid, I guess I'm asking can a plasmoid (trash can) run inside another plasmoid (desktop view) %-)

View 5 Replies View Related

Ubuntu :: Create Folder',and Results In An Empty Folder Being Created On Desktop?

Oct 29, 2010

I have this nasty habit of refreshing desktop in a quick succession by right-clicking and selecting 'Refresh',on my XP system at office.(And,iam sure most of us do the same).With Ubuntu,if a right-click on desktop slowly and select 'align by...',it simulates the XP refresh action as explained above.But,if i perform the same action rapidly,it takes this first option from right-click context menu,which is 'Create Folder',and results in an empty folder being created on desktop.I tried double right-clicking and again it created an empty folder.Is there any workaround to handle this.I mean:Can the right-click context menu items be shuffled so that the 'Create Folder' option is moved from 1st place

View 9 Replies View Related

Ubuntu :: Renaming VirtualBox Folder?

May 20, 2011

All I want to do is rename the folder containing my VMs but when I do that it breaks the VMs. In the settings of the individual VMs under Storage, there is a location for the .vdi file which I think may be the culprit but I see no way to change it. So is there a way to easily just rename the folder without importing/exporting the entire VM?

View 5 Replies View Related

Ubuntu :: Unable To Renaming Server Folder?

Jul 25, 2011

I've got three server folder things but I'm wondering whether I could rename them to something a bit more neater.When I do try renaming one it comes up with this error.

View 4 Replies View Related

Ubuntu :: Script For Renaming Files Giving Them The Name Of The Folder They're In?

Feb 2, 2010

I have a folder where all of my movies are placed. Each movie lies in its own folder. I want to write a script which renames all the movie files and gives them the name of the folder they are in.For example I want this file:/home/tryfon/movies/Black Irish [2007]/black.irish.dvdrip.avi to be renamed to /home/tryfon/movies/Black Irish [2007]/Black Irish [2007].aviOne issue is that the video files are of several file types (mostly avi, divx and mkv).Another issue is that some movies consist of two parts, so if a second avi file is found I would like the two (or more) files to be named like: "Black Irish [2007] CD1" and "Black Irish [2007] CD2", or if this is not possible at least notify me of the folders that contain more than one video fil

View 2 Replies View Related

Ubuntu Servers :: Renaming Files Recursively From Folder

Mar 26, 2011

I'm trying to rename files recursively from a folder. I want to delete the & from every filename. i've searched the net and found the following script:

Code:
#!/bin/bash
dir=/whatever/directory
for file in `ls $dir` ; do
# ANYCASE TO UPPERCASE:
newname=`echo $file | tr '[a-z]' '[A-Z]'`
mv $dir/$file $dir/$newname
done
and changed it:

Code:
#!/bin/bash
dir=/home/test
for file in `find $dir -type f` ; do
#rename files containing &
newname=`echo $file` | tr '[&]' ''
mv $dir/$file $dir/$newname
done

But the for loop explodes the filename after each & sign, so i don't have a whole filename. if the file is named lorem & ipsum, the for loop will break it in 3 parts.

View 2 Replies View Related

Ubuntu :: Created A Little Bash Script For Renaming Files From A Folder?

Feb 28, 2010

I created a little bash script for renaming files from a folderEvery time i hv to put that bash script file (rename.sh) in folder Is there any ways i will call (rename.sh) from terminal without moving rename.sh into any folder ?ne More Question : Whenever i run any .sh file automatically one .sh~ file created it is my programing mistake or is it exists ?

View 7 Replies View Related

Ubuntu Multimedia :: Avidemux Renaming Of Mp4 Files - Home Folder Don't Include The Prefix

Mar 24, 2010

I have used avidemux to cut a mp4 file, choosing just a part of it, and I have discovered it automatically adds "avidemux" to the beginning of the name of the file, plus the author of the file and that I cannot edit the file to erase it. Note that I talk about "right click - properties", and that the file, as seen from home folder dont include the "avidemux" prefix, but if, for instance, I run the file with VLC, "avidemux" will appear, and that is annoying. how to delete that annoying avidemux prefix?

View 1 Replies View Related

Ubuntu :: Renaming Multipal Folders \ Want To Give Some Prefix No. To Folder Only Not The Files Inside?

Jun 8, 2011

I have around 150+ folders in one directory. All contains some pdf files. Now i want to give some prefix no. to folder only not the files inside. How can i give the prefix to all my folders?Eg : Suppose i want no. 8562 then i want it like as follows

OLD FOLDER NEW FOLDER
ABC/ 8562-ABC/
AABC/ 8562-AABC/

View 2 Replies View Related

Ubuntu :: Permission To View Folder?

Mar 30, 2010

I have setup sharing on my macbook and my desktop pc. The sharing folder has all my music on my mac in it. It comes up on my desktop (ubuntu) as 'my name's public folder on my names's macbook' and i can go into it as get as far as the music folder but when i try to access it i get the folder contents can not be displayed you do not have permission to access this folder. How can i access it?

View 3 Replies View Related

Ubuntu :: Folder View Like On Windows?

Oct 12, 2010

i'm likeing the new ubuntu sofar, but one thing that is verry annoying is that when I'am looking at my folders with foto's. is there an option so i can view the photo's like on a windows pc(like on this pic)and something else; what is the best photoshop alternative? or can i run photoshop on my pc?

View 3 Replies View Related

Ubuntu :: System Crashing On Navigating Into Folder With Video Files?

Apr 2, 2011

Whenever I navigate into a folder containing video files, my entire system freezes/crashes. The keyboard, video, and the entire system become entirely unresponsive.

I can recreate the problem every single time by simply opening a nautilus window, then going into a directory containing 1 or more video files (avi, mkv, mp4, etc.). It doesn't seem to matter whether I stay in the folder, or quickly navigate away either. Seconds later, the system freezes entirely, to the point where my capslock key does not even toggle the capslock indicator.

I first noticed the problem when I installed 10.10 months ago on my Acer AspireOne D250. I had recently upgraded to ubuntu natty beta hoping the problem might have been fixed.

View 1 Replies View Related

Ubuntu :: Folder View Changed To Icon?

Jul 25, 2011

When I freshly installed Kubuntu all was just fine.I was curious about how the netbook environment would look even though I am on a Desktop. So I tried it out and everything went fine.I switched back to the Desktop environment and noticed that the widget on my desktop, which normally shows the items of my desktop folder,changed into an icon I have to click first before I can see the content.I rather have it as if was when I installed Kubuntu.

View 2 Replies View Related

Ubuntu :: No Permissions Necessary To View Contents Of My Folder

Jan 6, 2010

In trying to install an update, I deleted all the programs from my Ubuntu 9.10. Now I can not get my pictures, documents and music from the computer. I tried booting from a Ubuntu Live CD but when I get to the folder of my documents it says "you do not have the permissions necessary to view the contents of "My_Folder"". I tired the nautilus command but that only lets me view the files and not copy them.

View 3 Replies View Related

OpenSUSE :: + Or - Sign In Folder View?

Oct 3, 2010

In the folder view, when I point to an icon there isa + or - sign next to it. What does that mean?SuSE 11.3, KDE 4.4.4

View 9 Replies View Related

OpenSUSE :: Konqurer And File Manager On Video Folder Keeps Crashing?

Dec 4, 2010

I was installing some stuff and now after the install. The look of my kde is now totally changed and konquerer won't load and vlc also changed but its working.
File manager (dolphin) keeps crashing if I try to open the video folder. how to revert back to the old KDE or at least make things right.

View 8 Replies View Related

Ubuntu :: Folder View Screenlet Not Working As Expected?

Mar 4, 2010

I want to try out the screenlet called Folder View:[URL]I have downloaded and installed it fine. However, when I double-click on it (or use the Start/Stop button) there is a momentary flash and then nothing interesting. I have checked on the widget layer and on all desktops and I have tried various settings in Options all to no avail

View 2 Replies View Related

Ubuntu :: File Preview To Depend On Folder View?

Dec 29, 2010

I want nautilus to use file preview or not depending on what the view is for that folder. I want file preview to be enabled if I am using icon view, and disabled if I am using list view. This way image folders will be previewed (because I have set such folders to icon view), and other folders wont be (because they default to list view). I also want the desktop to be always previewed.This seems like quite a simple and common-sense desire, but I cant find out anywhere how to do this. At the very least what I'd like is the ability for force preview for a folder if I want to investigate it more closely - even if I have to click a button of select something to do so.

View 1 Replies View Related

Fedora :: Nautilus Can't View Home Folder?

Mar 12, 2010

When I try to view ~ in nautilus, the animation in the upper right corner just spins indefinitely. It happens when I run nautilus as root too.Typing "ls -la" in the home folder will cause the term to freeze. Neither "ls -a" or "ls -l" by themselves cause it to freeze The freezing only happens in ~ to my knowledge.The freezing terminal also ONLY happens in xterm, inside gnome. Through ssh I can display the folder contents just fine, and I don't see any strange file names that might be causing an issue.I tried following advice I found, I believe on this site, to "rm -rf ~/.gvfs"I feel that I may e overwritten a fedora-specific library somewhere when trying to compile different things. I don't recall this being an issue immediately after upgrading from fc10 to fc12, though it could have conceivably gone unnoticed.

View 1 Replies View Related

Fedora :: KDE - Add Firefox Application To Folder View?

Apr 17, 2011

How to add firefox application to folder view? i tried right click firefox in application luncher but icon is placed on desktop rather on translucent folder view, and when i drag it, it shows right behind the folder view.

View 2 Replies View Related

OpenSUSE :: Folder View Widget Not Working?

Jul 25, 2010

So after installing 11.3 for some reason I cleared all the widgets off my desktop. When I add the folder view widget to the desktop again so I can see my desktop iconsthe widget doesn't show my icons unless I click on it and they drop down. Without clicking on it, the widget shows the desktop icon (similar to the "show desktop" icon)

View 5 Replies View Related

OpenSUSE :: Revert Back To Folder View?

Oct 23, 2010

Ok I just upgrade my openSuSE from 11.2 to 11.3.. via free wireless at the library then I just found out that there is additional view on desktop configuration, if i'm not mistaken it's newspaper view.. after I click OK.. all my shortcut disappear.. now my problem how to revert back because right click is not function anymore...here my desktop after whar I did just like I mentioned just now..

View 1 Replies View Related

OpenSUSE Install :: Copying A Folder View?

Dec 22, 2010

I've some virtual desktop. Iǘe some folder views in one on the desktops wich i would like to appear on the others, is there a way to copy them

View 3 Replies View Related

Debian :: Nginx - View Files In Folder Via HTTP

Feb 13, 2011

How would a make files in /home/user01/file available on the web as [URL]? Is it possible for me to have anyone to access that link to log in as user01?

View 3 Replies View Related

CentOS 5 :: Show A Tree Folder View In Nautilus 2.16.2?

Mar 3, 2010

When I open Nautilus v2.16.2 in CentOS 5.4 then I miss at the left side a tree view of the whole directory tree.
Only a list of all files in the current directory is visible.

How can I enable/show ?

View 1 Replies View Related







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