Questions tagged [gvfs]

11 questions
9
votes
6 answers

GLIBC_2.33 not found - while building Flutter for Linux

I was trying to run a flutter app on Ubuntu 22.04 LTS. Everything was working fine. But, today this problem came up while running the app. The Flutter SDK fails to build the app throwing the below…
3
votes
5 answers

Is gvfs-trash installed? in Atom

When I tried to remove a file in local machine to check files are synchronous with vagrant development server it pops up an error: The following file couldn't be moved to the trash. Is gvfs-trash installed? For solving it I created a trash…
VA splash
  • 553
  • 1
  • 8
  • 25
2
votes
1 answer

Testing for GVfs metadata support in C

I am trying to add support for per-directory viewing settings to the Thunar file browser of the Xfce desktop. So for example if a user chooses to view the contents of a directory as a list rather than as a grid of icons, this setting is remembered…
1
vote
1 answer

Connect Android phone via mtp

System: manjaro. Desktop profile: kde. I tried to connect an Android phone via mtp, but it failed. The error message is as follows: $ mtpfs Listing raw device(s) Device 0 (VID=12d1 and PID=107e) is a Huawei P9 Plus. Found 1 device(s): Huawei:…
aszswaz
  • 609
  • 3
  • 10
1
vote
0 answers

How do I install gvfs-info?

I need to solve this error ./register_extension.sh: line 28: gvfs-info: command not found I already tried sudo apt-get install gvfs-info but it doesn't work. I also tried to update but it is still not working.
1
vote
1 answer

Azure devops (VSTS) and GITHUB: Current status on largest allowed repository size

We would like to give VFSforGIT (formerly known as GVFS) a try, but currently this only works with VSTS and GitHUB. So we can't run a local VFSforGIT server, since no open source server implementation exists yet. However, we expect our repository to…
Ziriax
  • 1,012
  • 10
  • 19
1
vote
0 answers

How does Nautilus mounts network shares

I need to know how does GNOME/Nautilus mounts a network shares (like smb://-shares through Nautilus), what syscalls it calls to it. I setted up __NR_mount syscall hook in kernel, but it never calls. So, Nautilus calls something else. But what? If I…
HoShiMin
  • 11
  • 1
1
vote
0 answers

A du equivalent for use on a Git repository managed by GVFS

I am researching into using GVFS One thing I noticed right away - do not run the du tool from sysinternals on such a repo - it will take ages to complete. I suppose it has to do with how the file size is obtained when GVFS is at play. So, my…
mark
  • 59,016
  • 79
  • 296
  • 580
0
votes
0 answers

LINUX Mint gvfs-set-attribute does not work although installed

gvfs-set-attribute: Befehl nicht gefunden. The last text means: command not found. Why? gvfs seems to be installed. ('installiert' means 'installed') oliver@oliversNotebook:~/Projekte/BBB$ sudo apt list -a --installed gvfs Auflistung……
Palmstroem
  • 1
  • 1
  • 3
0
votes
2 answers

`gio` command won't display `metadata::custom-icon` attribute

I have set a custom icon for a directory (via the file manager). this should set the metadata::custom-icon attribute. however, gio info does not show this attribute at all. the following python script shows it though: from gi.repository…
kindoflike
  • 437
  • 4
  • 16
0
votes
1 answer

Get directory entries for "slow protocols" asynchronously

I want a function for getting directory entries on Linux. I use ioutil.ReadDir and usually it is fast. But if I want to read some mounted virtual file system on /run/user/1000/gvfs/, this function becomes slow. If the directory has many file entries…