Can't install mesa-common-dev

75

what tells you apt-cache policy libdrm-dev?

You must look these posts:

I guess you have some conflicting package repositories/ppa. Or you have to built it manually, but only if you are sure you need a package version not provided by public repositories)

Always look at: How do I resolve unmet dependencies after adding a PPA? Or try to install other version of the conflicting packages: How to install specific Ubuntu packages, with exact version?

Share:
75

Related videos on Youtube

Sampath Kumar.R
Author by

Sampath Kumar.R

Updated on September 18, 2022

Comments

  • Sampath Kumar.R
    Sampath Kumar.R almost 2 years

    How I do delete the file and folder in C:\Users\soft\Recent?

    When I tried this line

        string path="C:\Users\softw\Recent";
        foreach (var folder in Directory.GetDirectories(path))
           Directory.Delete(folder , true);
    
        foreach (var file in Directory.GetFiles(path))
         File.Delete(file);
    

    I'm getting the following error

    Access to the path 'C:\Users\softw\Recent' is denied.

    Kindly help me.

    • Yannick Liekens
      Yannick Liekens over 4 years
      Not for this site, but check the permissions of the account you're using to execute the code. Check if the folder exists and the user has permissions on it.
    • Eduard Keilholz
      Eduard Keilholz over 4 years
      This is probably UAC kicking in... You're not supposed to edit files in that path. Either run your process elevated or store / edit / delete files in a proper location of your machine
  • BugFinder
    BugFinder over 4 years
    Recent I thought was actually a bunch of registry settings not actual files