how to update dolphin file manager in real timeHow do I add an alternative “open with” command for text...
Does it take energy to move something in a circle?
What is the difference between "...", '...', $'...', and $"..." quotes?
Why avoid shared user accounts?
Converting very wide logos to square formats
Subsurf on a crown. How can I smooth some edges and keep others sharp?
What is the wife of a henpecked husband called?
Midterm in Mathematics Courses
Boss asked me to sign a resignation paper without a date on it along with my new contract
Has any human ever had the choice to leave Earth permanently?
What is the industry term for house wiring diagrams?
Can a player sacrifice a creature after declaring that creature as blocker while taking lethal damage?
Why do neural networks need so many training examples to perform?
What's the oldest plausible frozen specimen for a Jurassic Park style story-line?
How can the probability of a fumble decrease linearly with more dice?
Am I correct in stating that the study of topology is purely theoretical?
How do you get out of your own psychology to write characters?
What language shall they sing in?
When Are Enum Values Defined?
Book where a space ship journeys to the center of the galaxy to find all the stars had gone supernova
If angels and devils are the same species, why would their mortal offspring appear physically different?
A starship is travelling at 0.9c and collides with a small rock. Will it leave a clean hole through, or will more happen?
Critique vs nitpicking
In harmony: key or the flow?
A fantasy book with seven white haired women on the cover
how to update dolphin file manager in real time
How do I add an alternative “open with” command for text files in Kubuntu?How to set up Dolphin as default file manager?KDE Dolphin file manager: Configure Places for all usersWhy is kubuntu adding a .directoy file to my directories?How to search recursively in Dolphin File Manager?Problem installing dolphin file managerDolphin File Manager Search Issues“Unable to make the service xyz executable, aborting execution”Problem with real-time clock since upgrading to Ubuntu 17.10How does KDE's Dolphin sort files?
If I have dolphin open and I'm working in the terminal or on Windows files might be moved or added. How would I go about to make sure it updates the status of a directory of real time?
Presently I cannot even use back to update and constantly have to reopen dolphin, verry annoying
kde dolphin realtime
add a comment |
If I have dolphin open and I'm working in the terminal or on Windows files might be moved or added. How would I go about to make sure it updates the status of a directory of real time?
Presently I cannot even use back to update and constantly have to reopen dolphin, verry annoying
kde dolphin realtime
3
To refresh the view press F5.
– Uri Herrera
Jun 22 '13 at 4:02
Thanks works. Now if only someone had a solution for real time updating.
– user140393
Jun 22 '13 at 4:07
problem still present in Kubuntu 18.04, Dolphin 17.12.3
– user47206
May 14 '18 at 4:59
bugs.kde.org/show_bug.cgi?id=387663
– user47206
May 14 '18 at 5:33
add a comment |
If I have dolphin open and I'm working in the terminal or on Windows files might be moved or added. How would I go about to make sure it updates the status of a directory of real time?
Presently I cannot even use back to update and constantly have to reopen dolphin, verry annoying
kde dolphin realtime
If I have dolphin open and I'm working in the terminal or on Windows files might be moved or added. How would I go about to make sure it updates the status of a directory of real time?
Presently I cannot even use back to update and constantly have to reopen dolphin, verry annoying
kde dolphin realtime
kde dolphin realtime
edited 6 hours ago
Kristopher Ives
2,83111525
2,83111525
asked Jun 22 '13 at 3:59
user140393user140393
246622
246622
3
To refresh the view press F5.
– Uri Herrera
Jun 22 '13 at 4:02
Thanks works. Now if only someone had a solution for real time updating.
– user140393
Jun 22 '13 at 4:07
problem still present in Kubuntu 18.04, Dolphin 17.12.3
– user47206
May 14 '18 at 4:59
bugs.kde.org/show_bug.cgi?id=387663
– user47206
May 14 '18 at 5:33
add a comment |
3
To refresh the view press F5.
– Uri Herrera
Jun 22 '13 at 4:02
Thanks works. Now if only someone had a solution for real time updating.
– user140393
Jun 22 '13 at 4:07
problem still present in Kubuntu 18.04, Dolphin 17.12.3
– user47206
May 14 '18 at 4:59
bugs.kde.org/show_bug.cgi?id=387663
– user47206
May 14 '18 at 5:33
3
3
To refresh the view press F5.
– Uri Herrera
Jun 22 '13 at 4:02
To refresh the view press F5.
– Uri Herrera
Jun 22 '13 at 4:02
Thanks works. Now if only someone had a solution for real time updating.
– user140393
Jun 22 '13 at 4:07
Thanks works. Now if only someone had a solution for real time updating.
– user140393
Jun 22 '13 at 4:07
problem still present in Kubuntu 18.04, Dolphin 17.12.3
– user47206
May 14 '18 at 4:59
problem still present in Kubuntu 18.04, Dolphin 17.12.3
– user47206
May 14 '18 at 4:59
bugs.kde.org/show_bug.cgi?id=387663
– user47206
May 14 '18 at 5:33
bugs.kde.org/show_bug.cgi?id=387663
– user47206
May 14 '18 at 5:33
add a comment |
6 Answers
6
active
oldest
votes
The way in order to refresh Dolphin is to press F5. However, this would be manual.
In order to continuously refresh, an automatic solution, create a bash script that runs on boot. This bash script should press F5 every five seconds if Dolphin is open. Create a file named dolphin-update
in /usr/local/bin
with the following contents:
#!/bin/bash
while true; do
PID=$(pgrep "dolphin")
if [ "$?" -ne "0" ]; then
xdotool key 'F5'
fi
sleep 5
done
You may need to first create it as root and then change the owner to your user:
sudo chown username:username /usr/local/bin/dolphin-update
Ensure that it has executable permissions:
chmod +x /usr/local/bin/dolphin-update
Now we need that to run on boot. To do that run sudo crontab -e
and add the following line to the end of the file:
@reboot /usr/local/bin/dolphin-update
This script will run on boot.
You should now have a continuously refreshing Dolphin!
There are some caveats to this script.
- If you open Dolphin, go to another application where F5 triggers something, (eg Chromium refreshes the page), the script will still run and be a constant annoyance. Solution: Close Dolphin when not actively using it.
- As a
cron
job is used, if your computer crashes, the script will not run on boot. However this is a problem withcron
not the script.
What the script means, line by line:
#!/bin/bash
- shebang to run with bash
while true; do
- run continuously
PID=$(pgrep "dolphin")
- find the process ID of adolphin
instance. This is purely there to check whether there is even a instance of Dolphin running.
if [ "$?" -ne "0" ]; then
- check the result of whether there is a Dolphin instance running. If there is, then ...
xdotool key 'F5'
- press F5
fi
- end theif
block
sleep 5
- wait 5 seconds before repeating the process
done
- end the while block
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
@cipricus It is possible, I did look into it, however it would require a daemon liketracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.
– ubashu
May 16 '18 at 20:40
what do you think about this answer, namely thewhenever it has focus
part? the automatic refreshing in relation to focus is as good aswhen a file/folder is created or deleted
part that I mentioned, isn't it?
– user47206
May 17 '18 at 9:50
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
add a comment |
This seems to be a bug still active in Kubuntu 18.04, where Dolphin would not always automatically refresh and show instantly changes made by another program, in which case manual refresh is needed. F5 seems to work fine for this purpose now.
1
xdotool
is to automate the refresh from a script.
– solsTiCe
May 15 '18 at 7:56
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
add a comment |
I agree this is a problem with Dolphin. I don't use it, but was testing some bash scripts I wrote on a KDE VM and discovered that although Dolphin does real time updating when in the home folder, it doesn't do it when on /dev/shm. I found your question here and upvoted, because this still needs to be answered.
What I resorted to using in my script is: xdotool key 'F5'
Which worked for my script, but isn't exactly real time. My script generates a bunch of files and you can't see it happening, but as soon as done, it "presses" 'F5' and the files are visible.
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
1
Just a shell script with an infinite loop will do the trickwhile true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.
– solsTiCe
May 15 '18 at 8:22
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
|
show 1 more comment
Next script uses xdotool to send F5 key to reset dolphin window whenever it has focus.
Save it, make it executive and run it on boot.
#!/bin/bash
# indefinite loop
while : ; do
# gets root window property _NET_ACTIVE_WINDOW
WIN=($(xprop -root _NET_ACTIVE_WINDOW))
# extracts window id (base seven)
WIN="${WIN[4]%%","*}"
WIN="$(printf "%sn" ${WIN})" # bypass weird array bug
# Decimal window id of dolphin
WindowID="$(xdotool search --class "dolphin" 2>/dev/null | tail -1)"
# Convert dolphin's win id to base seven
WindowIDbSeven=$(printf "0x%07x" ${WindowID})
# test if an acive window id mathes with the dolphin's window id
if [[ "${WIN}" == "${WindowIDbSeven}" ]]; then
# sends F5 to dolphin's window id
xdotool key --clearmodifiers "$WindowIDbSeven" F5
fi
# clears array
WIN=()
sleep 5
done
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
add a comment |
OP's original question is almost 5 years old. There is a master bug posted in 2009 with 15 duplicate bugs pointing to it. The bug fix appeared in Debian (comment # 58) after OP's question was posted.
The report that this bug is still happening in 2018 by a new bug report is a little misleading because the user that filed the report (Jeremy9856) has posted a dozen comments trying different solutions:
- updated the number of allowed kernel
inotify
watches - disabling
tlp
which puts drives to sleep - do
mkdir
/rmdir
several time to trigger the problem - Another user (comment #10) tested a one-liner and states the problem doesn't exist
while true ; do mkdir abc ; sleep 1 ; rmdir abc ; sleep 1 ; done
- when there is an accent in the path (eg.
/home/jeremy/Téléchargements/Séries
)
The last comment by Jeremy9586 states:
Well I removed the symlinks of the folders inside /home (Desktop,
Downloads, etc...) that pointed to /media/Data and used kde settings
(in applications) to change the places of these folders and I didn't
had the problem for about a week !
So can it be related to the symlinks ?
Summary
The bug the OP had was first reported in 2009 and solved in 2013.
The bug the new bounty points to appears to have nothing to do with refreshing file list in general and need to press F5. The bug was caused by symbolic links between /home
and /media/home
.
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
add a comment |
xdotool can send F5 key to dolphin on mouse-enter event or whenever it's window gets focus.
These commands run indefinetely so you can set one of them to run on boot.
Finds the window with class dolphin and sends the F5 whenever mouse pointer enters window:
xdotool search --onlyvisible --class dolphin behave %@ mouse-enter key F5
Finds the window with class dolphin and sends the F5 whenever dolphin gets focus:
xdotool search --onlyvisible --class dolphin behave %@ focus key F5
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?
– user47206
May 17 '18 at 9:56
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f311303%2fhow-to-update-dolphin-file-manager-in-real-time%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
The way in order to refresh Dolphin is to press F5. However, this would be manual.
In order to continuously refresh, an automatic solution, create a bash script that runs on boot. This bash script should press F5 every five seconds if Dolphin is open. Create a file named dolphin-update
in /usr/local/bin
with the following contents:
#!/bin/bash
while true; do
PID=$(pgrep "dolphin")
if [ "$?" -ne "0" ]; then
xdotool key 'F5'
fi
sleep 5
done
You may need to first create it as root and then change the owner to your user:
sudo chown username:username /usr/local/bin/dolphin-update
Ensure that it has executable permissions:
chmod +x /usr/local/bin/dolphin-update
Now we need that to run on boot. To do that run sudo crontab -e
and add the following line to the end of the file:
@reboot /usr/local/bin/dolphin-update
This script will run on boot.
You should now have a continuously refreshing Dolphin!
There are some caveats to this script.
- If you open Dolphin, go to another application where F5 triggers something, (eg Chromium refreshes the page), the script will still run and be a constant annoyance. Solution: Close Dolphin when not actively using it.
- As a
cron
job is used, if your computer crashes, the script will not run on boot. However this is a problem withcron
not the script.
What the script means, line by line:
#!/bin/bash
- shebang to run with bash
while true; do
- run continuously
PID=$(pgrep "dolphin")
- find the process ID of adolphin
instance. This is purely there to check whether there is even a instance of Dolphin running.
if [ "$?" -ne "0" ]; then
- check the result of whether there is a Dolphin instance running. If there is, then ...
xdotool key 'F5'
- press F5
fi
- end theif
block
sleep 5
- wait 5 seconds before repeating the process
done
- end the while block
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
@cipricus It is possible, I did look into it, however it would require a daemon liketracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.
– ubashu
May 16 '18 at 20:40
what do you think about this answer, namely thewhenever it has focus
part? the automatic refreshing in relation to focus is as good aswhen a file/folder is created or deleted
part that I mentioned, isn't it?
– user47206
May 17 '18 at 9:50
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
add a comment |
The way in order to refresh Dolphin is to press F5. However, this would be manual.
In order to continuously refresh, an automatic solution, create a bash script that runs on boot. This bash script should press F5 every five seconds if Dolphin is open. Create a file named dolphin-update
in /usr/local/bin
with the following contents:
#!/bin/bash
while true; do
PID=$(pgrep "dolphin")
if [ "$?" -ne "0" ]; then
xdotool key 'F5'
fi
sleep 5
done
You may need to first create it as root and then change the owner to your user:
sudo chown username:username /usr/local/bin/dolphin-update
Ensure that it has executable permissions:
chmod +x /usr/local/bin/dolphin-update
Now we need that to run on boot. To do that run sudo crontab -e
and add the following line to the end of the file:
@reboot /usr/local/bin/dolphin-update
This script will run on boot.
You should now have a continuously refreshing Dolphin!
There are some caveats to this script.
- If you open Dolphin, go to another application where F5 triggers something, (eg Chromium refreshes the page), the script will still run and be a constant annoyance. Solution: Close Dolphin when not actively using it.
- As a
cron
job is used, if your computer crashes, the script will not run on boot. However this is a problem withcron
not the script.
What the script means, line by line:
#!/bin/bash
- shebang to run with bash
while true; do
- run continuously
PID=$(pgrep "dolphin")
- find the process ID of adolphin
instance. This is purely there to check whether there is even a instance of Dolphin running.
if [ "$?" -ne "0" ]; then
- check the result of whether there is a Dolphin instance running. If there is, then ...
xdotool key 'F5'
- press F5
fi
- end theif
block
sleep 5
- wait 5 seconds before repeating the process
done
- end the while block
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
@cipricus It is possible, I did look into it, however it would require a daemon liketracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.
– ubashu
May 16 '18 at 20:40
what do you think about this answer, namely thewhenever it has focus
part? the automatic refreshing in relation to focus is as good aswhen a file/folder is created or deleted
part that I mentioned, isn't it?
– user47206
May 17 '18 at 9:50
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
add a comment |
The way in order to refresh Dolphin is to press F5. However, this would be manual.
In order to continuously refresh, an automatic solution, create a bash script that runs on boot. This bash script should press F5 every five seconds if Dolphin is open. Create a file named dolphin-update
in /usr/local/bin
with the following contents:
#!/bin/bash
while true; do
PID=$(pgrep "dolphin")
if [ "$?" -ne "0" ]; then
xdotool key 'F5'
fi
sleep 5
done
You may need to first create it as root and then change the owner to your user:
sudo chown username:username /usr/local/bin/dolphin-update
Ensure that it has executable permissions:
chmod +x /usr/local/bin/dolphin-update
Now we need that to run on boot. To do that run sudo crontab -e
and add the following line to the end of the file:
@reboot /usr/local/bin/dolphin-update
This script will run on boot.
You should now have a continuously refreshing Dolphin!
There are some caveats to this script.
- If you open Dolphin, go to another application where F5 triggers something, (eg Chromium refreshes the page), the script will still run and be a constant annoyance. Solution: Close Dolphin when not actively using it.
- As a
cron
job is used, if your computer crashes, the script will not run on boot. However this is a problem withcron
not the script.
What the script means, line by line:
#!/bin/bash
- shebang to run with bash
while true; do
- run continuously
PID=$(pgrep "dolphin")
- find the process ID of adolphin
instance. This is purely there to check whether there is even a instance of Dolphin running.
if [ "$?" -ne "0" ]; then
- check the result of whether there is a Dolphin instance running. If there is, then ...
xdotool key 'F5'
- press F5
fi
- end theif
block
sleep 5
- wait 5 seconds before repeating the process
done
- end the while block
The way in order to refresh Dolphin is to press F5. However, this would be manual.
In order to continuously refresh, an automatic solution, create a bash script that runs on boot. This bash script should press F5 every five seconds if Dolphin is open. Create a file named dolphin-update
in /usr/local/bin
with the following contents:
#!/bin/bash
while true; do
PID=$(pgrep "dolphin")
if [ "$?" -ne "0" ]; then
xdotool key 'F5'
fi
sleep 5
done
You may need to first create it as root and then change the owner to your user:
sudo chown username:username /usr/local/bin/dolphin-update
Ensure that it has executable permissions:
chmod +x /usr/local/bin/dolphin-update
Now we need that to run on boot. To do that run sudo crontab -e
and add the following line to the end of the file:
@reboot /usr/local/bin/dolphin-update
This script will run on boot.
You should now have a continuously refreshing Dolphin!
There are some caveats to this script.
- If you open Dolphin, go to another application where F5 triggers something, (eg Chromium refreshes the page), the script will still run and be a constant annoyance. Solution: Close Dolphin when not actively using it.
- As a
cron
job is used, if your computer crashes, the script will not run on boot. However this is a problem withcron
not the script.
What the script means, line by line:
#!/bin/bash
- shebang to run with bash
while true; do
- run continuously
PID=$(pgrep "dolphin")
- find the process ID of adolphin
instance. This is purely there to check whether there is even a instance of Dolphin running.
if [ "$?" -ne "0" ]; then
- check the result of whether there is a Dolphin instance running. If there is, then ...
xdotool key 'F5'
- press F5
fi
- end theif
block
sleep 5
- wait 5 seconds before repeating the process
done
- end the while block
edited May 16 '18 at 20:38
answered May 15 '18 at 23:59
ubashuubashu
2,38821837
2,38821837
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
@cipricus It is possible, I did look into it, however it would require a daemon liketracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.
– ubashu
May 16 '18 at 20:40
what do you think about this answer, namely thewhenever it has focus
part? the automatic refreshing in relation to focus is as good aswhen a file/folder is created or deleted
part that I mentioned, isn't it?
– user47206
May 17 '18 at 9:50
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
add a comment |
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
@cipricus It is possible, I did look into it, however it would require a daemon liketracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.
– ubashu
May 16 '18 at 20:40
what do you think about this answer, namely thewhenever it has focus
part? the automatic refreshing in relation to focus is as good aswhen a file/folder is created or deleted
part that I mentioned, isn't it?
– user47206
May 17 '18 at 9:50
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
The answer is really putting together all that was said under this question.- As far as I can tell, in Kubuntu 18.04 the non-refresh thing rarely happens (while I have seen it happen, hence the bounty). Given the caveats you mention (especially the first one) I hesitate using the script (given that manual F5 is an easy enough solution too).. - I guess my question is naive, but do you think the script could be improved further in order for it to run only when a file/folder is created or deleted? - I guess not.
– user47206
May 16 '18 at 8:37
@cipricus It is possible, I did look into it, however it would require a daemon like
tracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.– ubashu
May 16 '18 at 20:40
@cipricus It is possible, I did look into it, however it would require a daemon like
tracker
from GNOME. These daemons require very high CPU resources and disk usage, slowing down the rest of the system. So not easily, no.– ubashu
May 16 '18 at 20:40
what do you think about this answer, namely the
whenever it has focus
part? the automatic refreshing in relation to focus is as good as when a file/folder is created or deleted
part that I mentioned, isn't it?– user47206
May 17 '18 at 9:50
what do you think about this answer, namely the
whenever it has focus
part? the automatic refreshing in relation to focus is as good as when a file/folder is created or deleted
part that I mentioned, isn't it?– user47206
May 17 '18 at 9:50
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus yes it is. :D @MilosPavlovic
– ubashu
May 17 '18 at 22:37
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
@cipricus Thank you for giving me the bounty. I'm not sure that I entirely deserve it, it is not a full solution. But thanks anyway.
– ubashu
May 21 '18 at 0:40
add a comment |
This seems to be a bug still active in Kubuntu 18.04, where Dolphin would not always automatically refresh and show instantly changes made by another program, in which case manual refresh is needed. F5 seems to work fine for this purpose now.
1
xdotool
is to automate the refresh from a script.
– solsTiCe
May 15 '18 at 7:56
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
add a comment |
This seems to be a bug still active in Kubuntu 18.04, where Dolphin would not always automatically refresh and show instantly changes made by another program, in which case manual refresh is needed. F5 seems to work fine for this purpose now.
1
xdotool
is to automate the refresh from a script.
– solsTiCe
May 15 '18 at 7:56
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
add a comment |
This seems to be a bug still active in Kubuntu 18.04, where Dolphin would not always automatically refresh and show instantly changes made by another program, in which case manual refresh is needed. F5 seems to work fine for this purpose now.
This seems to be a bug still active in Kubuntu 18.04, where Dolphin would not always automatically refresh and show instantly changes made by another program, in which case manual refresh is needed. F5 seems to work fine for this purpose now.
edited May 15 '18 at 7:58
answered May 15 '18 at 7:35
user47206
1
xdotool
is to automate the refresh from a script.
– solsTiCe
May 15 '18 at 7:56
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
add a comment |
1
xdotool
is to automate the refresh from a script.
– solsTiCe
May 15 '18 at 7:56
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
1
1
xdotool
is to automate the refresh from a script.– solsTiCe
May 15 '18 at 7:56
xdotool
is to automate the refresh from a script.– solsTiCe
May 15 '18 at 7:56
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
@solsTiCe - Thanks for pointing that out. The other answer doesn't provide the full solution though, only describes it.
– user47206
May 15 '18 at 7:59
add a comment |
I agree this is a problem with Dolphin. I don't use it, but was testing some bash scripts I wrote on a KDE VM and discovered that although Dolphin does real time updating when in the home folder, it doesn't do it when on /dev/shm. I found your question here and upvoted, because this still needs to be answered.
What I resorted to using in my script is: xdotool key 'F5'
Which worked for my script, but isn't exactly real time. My script generates a bunch of files and you can't see it happening, but as soon as done, it "presses" 'F5' and the files are visible.
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
1
Just a shell script with an infinite loop will do the trickwhile true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.
– solsTiCe
May 15 '18 at 8:22
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
|
show 1 more comment
I agree this is a problem with Dolphin. I don't use it, but was testing some bash scripts I wrote on a KDE VM and discovered that although Dolphin does real time updating when in the home folder, it doesn't do it when on /dev/shm. I found your question here and upvoted, because this still needs to be answered.
What I resorted to using in my script is: xdotool key 'F5'
Which worked for my script, but isn't exactly real time. My script generates a bunch of files and you can't see it happening, but as soon as done, it "presses" 'F5' and the files are visible.
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
1
Just a shell script with an infinite loop will do the trickwhile true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.
– solsTiCe
May 15 '18 at 8:22
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
|
show 1 more comment
I agree this is a problem with Dolphin. I don't use it, but was testing some bash scripts I wrote on a KDE VM and discovered that although Dolphin does real time updating when in the home folder, it doesn't do it when on /dev/shm. I found your question here and upvoted, because this still needs to be answered.
What I resorted to using in my script is: xdotool key 'F5'
Which worked for my script, but isn't exactly real time. My script generates a bunch of files and you can't see it happening, but as soon as done, it "presses" 'F5' and the files are visible.
I agree this is a problem with Dolphin. I don't use it, but was testing some bash scripts I wrote on a KDE VM and discovered that although Dolphin does real time updating when in the home folder, it doesn't do it when on /dev/shm. I found your question here and upvoted, because this still needs to be answered.
What I resorted to using in my script is: xdotool key 'F5'
Which worked for my script, but isn't exactly real time. My script generates a bunch of files and you can't see it happening, but as soon as done, it "presses" 'F5' and the files are visible.
answered Oct 7 '14 at 13:12
Colin KeenanColin Keenan
26614
26614
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
1
Just a shell script with an infinite loop will do the trickwhile true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.
– solsTiCe
May 15 '18 at 8:22
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
|
show 1 more comment
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
1
Just a shell script with an infinite loop will do the trickwhile true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.
– solsTiCe
May 15 '18 at 8:22
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
could you provide more details so that anyone could use your solution?
– user47206
May 15 '18 at 8:00
1
1
Just a shell script with an infinite loop will do the trick
while true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.– solsTiCe
May 15 '18 at 8:22
Just a shell script with an infinite loop will do the trick
while true; do sleep 5; xdotool key 'F5';done
. However xdotool only works in X11 not in wayland.– solsTiCe
May 15 '18 at 8:22
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
@solsTiCe - (I'm in KDE. ) Would you post the full script and full details on how/when to run it?
– user47206
May 15 '18 at 16:31
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
the problem is this rarely happens. so I wonder whether it's worth adding the script
– user47206
May 15 '18 at 16:50
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
@solsTiCe - the script was posted with full details in a new answer
– user47206
May 16 '18 at 8:39
|
show 1 more comment
Next script uses xdotool to send F5 key to reset dolphin window whenever it has focus.
Save it, make it executive and run it on boot.
#!/bin/bash
# indefinite loop
while : ; do
# gets root window property _NET_ACTIVE_WINDOW
WIN=($(xprop -root _NET_ACTIVE_WINDOW))
# extracts window id (base seven)
WIN="${WIN[4]%%","*}"
WIN="$(printf "%sn" ${WIN})" # bypass weird array bug
# Decimal window id of dolphin
WindowID="$(xdotool search --class "dolphin" 2>/dev/null | tail -1)"
# Convert dolphin's win id to base seven
WindowIDbSeven=$(printf "0x%07x" ${WindowID})
# test if an acive window id mathes with the dolphin's window id
if [[ "${WIN}" == "${WindowIDbSeven}" ]]; then
# sends F5 to dolphin's window id
xdotool key --clearmodifiers "$WindowIDbSeven" F5
fi
# clears array
WIN=()
sleep 5
done
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
add a comment |
Next script uses xdotool to send F5 key to reset dolphin window whenever it has focus.
Save it, make it executive and run it on boot.
#!/bin/bash
# indefinite loop
while : ; do
# gets root window property _NET_ACTIVE_WINDOW
WIN=($(xprop -root _NET_ACTIVE_WINDOW))
# extracts window id (base seven)
WIN="${WIN[4]%%","*}"
WIN="$(printf "%sn" ${WIN})" # bypass weird array bug
# Decimal window id of dolphin
WindowID="$(xdotool search --class "dolphin" 2>/dev/null | tail -1)"
# Convert dolphin's win id to base seven
WindowIDbSeven=$(printf "0x%07x" ${WindowID})
# test if an acive window id mathes with the dolphin's window id
if [[ "${WIN}" == "${WindowIDbSeven}" ]]; then
# sends F5 to dolphin's window id
xdotool key --clearmodifiers "$WindowIDbSeven" F5
fi
# clears array
WIN=()
sleep 5
done
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
add a comment |
Next script uses xdotool to send F5 key to reset dolphin window whenever it has focus.
Save it, make it executive and run it on boot.
#!/bin/bash
# indefinite loop
while : ; do
# gets root window property _NET_ACTIVE_WINDOW
WIN=($(xprop -root _NET_ACTIVE_WINDOW))
# extracts window id (base seven)
WIN="${WIN[4]%%","*}"
WIN="$(printf "%sn" ${WIN})" # bypass weird array bug
# Decimal window id of dolphin
WindowID="$(xdotool search --class "dolphin" 2>/dev/null | tail -1)"
# Convert dolphin's win id to base seven
WindowIDbSeven=$(printf "0x%07x" ${WindowID})
# test if an acive window id mathes with the dolphin's window id
if [[ "${WIN}" == "${WindowIDbSeven}" ]]; then
# sends F5 to dolphin's window id
xdotool key --clearmodifiers "$WindowIDbSeven" F5
fi
# clears array
WIN=()
sleep 5
done
Next script uses xdotool to send F5 key to reset dolphin window whenever it has focus.
Save it, make it executive and run it on boot.
#!/bin/bash
# indefinite loop
while : ; do
# gets root window property _NET_ACTIVE_WINDOW
WIN=($(xprop -root _NET_ACTIVE_WINDOW))
# extracts window id (base seven)
WIN="${WIN[4]%%","*}"
WIN="$(printf "%sn" ${WIN})" # bypass weird array bug
# Decimal window id of dolphin
WindowID="$(xdotool search --class "dolphin" 2>/dev/null | tail -1)"
# Convert dolphin's win id to base seven
WindowIDbSeven=$(printf "0x%07x" ${WindowID})
# test if an acive window id mathes with the dolphin's window id
if [[ "${WIN}" == "${WindowIDbSeven}" ]]; then
# sends F5 to dolphin's window id
xdotool key --clearmodifiers "$WindowIDbSeven" F5
fi
# clears array
WIN=()
sleep 5
done
edited May 17 '18 at 20:16
answered May 17 '18 at 5:06
user829010
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
add a comment |
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
what is the differences between the two answers? you should post them under one answer for convenience anyway.
– user47206
May 17 '18 at 9:53
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
once the window gets focus how often does the script refreshes it?
– user47206
May 17 '18 at 9:54
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
Once dolphin gets the focus, every 5 seconds. You can change the sleep interval.
– user829010
May 17 '18 at 14:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
so, I'm a bit embarrassed by the success of my bounty post :) , what I'll do is grant it to @ubashu and then grant a new one for you too. Unifying your two answers would be good.
– user47206
May 20 '18 at 8:49
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
It should be used fixed by inotify. It's useless answer. If you have 10^6 files you will be stuck on such update.
– RedEyed
Jun 1 '18 at 19:26
add a comment |
OP's original question is almost 5 years old. There is a master bug posted in 2009 with 15 duplicate bugs pointing to it. The bug fix appeared in Debian (comment # 58) after OP's question was posted.
The report that this bug is still happening in 2018 by a new bug report is a little misleading because the user that filed the report (Jeremy9856) has posted a dozen comments trying different solutions:
- updated the number of allowed kernel
inotify
watches - disabling
tlp
which puts drives to sleep - do
mkdir
/rmdir
several time to trigger the problem - Another user (comment #10) tested a one-liner and states the problem doesn't exist
while true ; do mkdir abc ; sleep 1 ; rmdir abc ; sleep 1 ; done
- when there is an accent in the path (eg.
/home/jeremy/Téléchargements/Séries
)
The last comment by Jeremy9586 states:
Well I removed the symlinks of the folders inside /home (Desktop,
Downloads, etc...) that pointed to /media/Data and used kde settings
(in applications) to change the places of these folders and I didn't
had the problem for about a week !
So can it be related to the symlinks ?
Summary
The bug the OP had was first reported in 2009 and solved in 2013.
The bug the new bounty points to appears to have nothing to do with refreshing file list in general and need to press F5. The bug was caused by symbolic links between /home
and /media/home
.
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
add a comment |
OP's original question is almost 5 years old. There is a master bug posted in 2009 with 15 duplicate bugs pointing to it. The bug fix appeared in Debian (comment # 58) after OP's question was posted.
The report that this bug is still happening in 2018 by a new bug report is a little misleading because the user that filed the report (Jeremy9856) has posted a dozen comments trying different solutions:
- updated the number of allowed kernel
inotify
watches - disabling
tlp
which puts drives to sleep - do
mkdir
/rmdir
several time to trigger the problem - Another user (comment #10) tested a one-liner and states the problem doesn't exist
while true ; do mkdir abc ; sleep 1 ; rmdir abc ; sleep 1 ; done
- when there is an accent in the path (eg.
/home/jeremy/Téléchargements/Séries
)
The last comment by Jeremy9586 states:
Well I removed the symlinks of the folders inside /home (Desktop,
Downloads, etc...) that pointed to /media/Data and used kde settings
(in applications) to change the places of these folders and I didn't
had the problem for about a week !
So can it be related to the symlinks ?
Summary
The bug the OP had was first reported in 2009 and solved in 2013.
The bug the new bounty points to appears to have nothing to do with refreshing file list in general and need to press F5. The bug was caused by symbolic links between /home
and /media/home
.
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
add a comment |
OP's original question is almost 5 years old. There is a master bug posted in 2009 with 15 duplicate bugs pointing to it. The bug fix appeared in Debian (comment # 58) after OP's question was posted.
The report that this bug is still happening in 2018 by a new bug report is a little misleading because the user that filed the report (Jeremy9856) has posted a dozen comments trying different solutions:
- updated the number of allowed kernel
inotify
watches - disabling
tlp
which puts drives to sleep - do
mkdir
/rmdir
several time to trigger the problem - Another user (comment #10) tested a one-liner and states the problem doesn't exist
while true ; do mkdir abc ; sleep 1 ; rmdir abc ; sleep 1 ; done
- when there is an accent in the path (eg.
/home/jeremy/Téléchargements/Séries
)
The last comment by Jeremy9586 states:
Well I removed the symlinks of the folders inside /home (Desktop,
Downloads, etc...) that pointed to /media/Data and used kde settings
(in applications) to change the places of these folders and I didn't
had the problem for about a week !
So can it be related to the symlinks ?
Summary
The bug the OP had was first reported in 2009 and solved in 2013.
The bug the new bounty points to appears to have nothing to do with refreshing file list in general and need to press F5. The bug was caused by symbolic links between /home
and /media/home
.
OP's original question is almost 5 years old. There is a master bug posted in 2009 with 15 duplicate bugs pointing to it. The bug fix appeared in Debian (comment # 58) after OP's question was posted.
The report that this bug is still happening in 2018 by a new bug report is a little misleading because the user that filed the report (Jeremy9856) has posted a dozen comments trying different solutions:
- updated the number of allowed kernel
inotify
watches - disabling
tlp
which puts drives to sleep - do
mkdir
/rmdir
several time to trigger the problem - Another user (comment #10) tested a one-liner and states the problem doesn't exist
while true ; do mkdir abc ; sleep 1 ; rmdir abc ; sleep 1 ; done
- when there is an accent in the path (eg.
/home/jeremy/Téléchargements/Séries
)
The last comment by Jeremy9586 states:
Well I removed the symlinks of the folders inside /home (Desktop,
Downloads, etc...) that pointed to /media/Data and used kde settings
(in applications) to change the places of these folders and I didn't
had the problem for about a week !
So can it be related to the symlinks ?
Summary
The bug the OP had was first reported in 2009 and solved in 2013.
The bug the new bounty points to appears to have nothing to do with refreshing file list in general and need to press F5. The bug was caused by symbolic links between /home
and /media/home
.
answered May 20 '18 at 17:10
WinEunuuchs2UnixWinEunuuchs2Unix
45.9k1089180
45.9k1089180
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
add a comment |
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
The latest bug is happening only rarely on my system.
– user47206
May 21 '18 at 7:48
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
@cipricus The rare bugs are hardest to pin down. Every couple months when rebooting grub and selecting a distro a tiny little fist will appear on a black screen and I have to cold boot. Although annoying when it happens, the many hours to fix are too expensive compared to the 10 seconds of lost time.
– WinEunuuchs2Unix
May 21 '18 at 12:29
add a comment |
xdotool can send F5 key to dolphin on mouse-enter event or whenever it's window gets focus.
These commands run indefinetely so you can set one of them to run on boot.
Finds the window with class dolphin and sends the F5 whenever mouse pointer enters window:
xdotool search --onlyvisible --class dolphin behave %@ mouse-enter key F5
Finds the window with class dolphin and sends the F5 whenever dolphin gets focus:
xdotool search --onlyvisible --class dolphin behave %@ focus key F5
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?
– user47206
May 17 '18 at 9:56
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
add a comment |
xdotool can send F5 key to dolphin on mouse-enter event or whenever it's window gets focus.
These commands run indefinetely so you can set one of them to run on boot.
Finds the window with class dolphin and sends the F5 whenever mouse pointer enters window:
xdotool search --onlyvisible --class dolphin behave %@ mouse-enter key F5
Finds the window with class dolphin and sends the F5 whenever dolphin gets focus:
xdotool search --onlyvisible --class dolphin behave %@ focus key F5
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?
– user47206
May 17 '18 at 9:56
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
add a comment |
xdotool can send F5 key to dolphin on mouse-enter event or whenever it's window gets focus.
These commands run indefinetely so you can set one of them to run on boot.
Finds the window with class dolphin and sends the F5 whenever mouse pointer enters window:
xdotool search --onlyvisible --class dolphin behave %@ mouse-enter key F5
Finds the window with class dolphin and sends the F5 whenever dolphin gets focus:
xdotool search --onlyvisible --class dolphin behave %@ focus key F5
xdotool can send F5 key to dolphin on mouse-enter event or whenever it's window gets focus.
These commands run indefinetely so you can set one of them to run on boot.
Finds the window with class dolphin and sends the F5 whenever mouse pointer enters window:
xdotool search --onlyvisible --class dolphin behave %@ mouse-enter key F5
Finds the window with class dolphin and sends the F5 whenever dolphin gets focus:
xdotool search --onlyvisible --class dolphin behave %@ focus key F5
answered May 16 '18 at 22:46
user829010
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?
– user47206
May 17 '18 at 9:56
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
add a comment |
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?
– user47206
May 17 '18 at 9:56
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?– user47206
May 17 '18 at 9:56
whenever mouse pointer enters window
- that sounds great. is the other answer you posted better in any way?– user47206
May 17 '18 at 9:56
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
This is the manual way of refreshing the window and requres to move the mouse pointer away from the dolphin and back in. Or in the case of second command giving focus to another window and then focusing dolphin again. In the other answer it's automatic.
– user829010
May 17 '18 at 14:44
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f311303%2fhow-to-update-dolphin-file-manager-in-real-time%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
To refresh the view press F5.
– Uri Herrera
Jun 22 '13 at 4:02
Thanks works. Now if only someone had a solution for real time updating.
– user140393
Jun 22 '13 at 4:07
problem still present in Kubuntu 18.04, Dolphin 17.12.3
– user47206
May 14 '18 at 4:59
bugs.kde.org/show_bug.cgi?id=387663
– user47206
May 14 '18 at 5:33