I find a lot of files with names of the like
.goutputstream-xxxxx
where xxxxx are some alphanumeric characters.
Here is a screenshot of the home folder
Any idea why I should keep these or can I remove and also stop further creation?
This is a bug - https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/984785
Pretty sure it's not ubuntu one - I don't have it here and have the files.
I delete them every now and again, not caused me any issues.
You can run this command in a terminal to delete them all:
cd && rm .goutputstream-* -v
These are temporary files that should have been deleted. Most likely created by Ubuntu One.
This issue has been discussed to detail on this forum:
A fix is still in the works (via the bug report):
upstream commited a fix to git if somebody wants to try the change: http://git.gnome.org/browse/glib/commit/?id=afdb2abb13896a3d5caecabd2f7158e8047f9956
For now, I'm running this in cron (myuser
is my username, and using crontab -e
to edit ) :
@daily find /home/myuser/.goutputstream-* -mtime +2 -print | xargs rm -f
crontab -e
, the default location should be correctly selected already.
– belacqua
Mar 20 '13 at 22:47
-delete
instead of your xargs
, it is safer and simpler.
– Martin Ueding
Apr 15 '13 at 17:32
I don't know if it is because of a kernel update, or what have you but I was able to accomplish the same result as:
cd && rm .goutputstream-* -v
by running:
rm .goutputstream-*
cd
, deletes all .goutputstream-*
files and gives you a list of the files deleted. The latter deletes all .goutputstream-*
files in the current directory. So your solution won't work if the user isn't already in the home directory.
– Zaz
Dec 14 '12 at 13:08
.goutputstream-*
files that may be in the home directory. If there had been any such files in that current directory, they would have been deleted.
– icedwater
Jan 05 '14 at 08:51
posix_mkfifo()
andpcntl_exec()
– NVRM Oct 12 '19 at 10:29~/Desktop
in ubuntu 23.04 once SIGTERM was passed to gnome-shell. Thestat
shows that it had been created 3 days before though, but it wasn't visible. Also thefile
output:.goutputstream-X8R6C2: Zip archive data, at least v2.0 to extract, compression method=[0x305c]
– Mislah Oct 30 '23 at 14:53