Skip to main content

Issue Resolve: While uninstall or Remove or Install Software from Linux Terminal "unmet dependencies"

Unmet dependencies usually cause that installed  software already holding a lock inside cache folder. Hence to come over  this kind of issues, the following commands will help while uninstalling packages or installing packages.

Step 1. Remove the lock

sudo rm /var/cache/apt/archives/lock

Step 2. Update apt-get

sudo apt-get update

Step 3. Now Install the software   
sudo apt-get install [package or software]
Remove/Uninstall software
sudo apt-get remove [package or software]

Comments

  1. Learning new technolgy would help oneself at hard part of their career. And staying updated is the only way to survive in current position. Your content tells the same. Thanks for sharing this information in here. Keep blogging like this. iOS App Development Company in Chennai

    ReplyDelete
  2. Employees have access to PHI should take the Privacy Security officer overview training. If you accept Medicare and Medicaid insurance then take Fraud Waste and Abuse (FWA) Prevention Training. Employees in the IT department can consider taking comprehensive HIPAA Security Compliance Training and from HR department can take comprehensive HIPAA Privacy Compliance Training

    ReplyDelete
  3. Roofing contractors in Calgary can be found on almost any corner these days. Since your home is likely the most expensive investment you’ve made and own, and you want to take care of it. So, when you need repairs or replacement for your roof, you should use the best service you can find. In Calgary, roofing needs should be serviced by a professional that has experience and recent references you can check.

    ReplyDelete

Post a Comment

Share this to your friends

Popular posts from this blog

"How to maintain or retain tabs in same tab after button click events or postback?" using JQuery in ASP.NET C#

In this post I'll share an details about " How to maintain or retain tabs in same tab after button click events or postback? " Step 1: you need to download Jquery and JQueryUI Javascript libraries from this site http://jqueryui.com/ Step 2: As usually you can create ASP.NET website from Visual Studio IDE and add Jquery and JqueryUI plugins in the header section of aspx page. Step 3: Add HiddenField control inside aspx page which is very useful to retain tab in same page Step 4: Use the HiddenField ID in Jquery code to indicate that CurrentTab Index Step 5: In code Behind, using Enumerations concept give the tab index values as user defined variable  Step 6: Use the Enum values in every Button click events on different tabs to check that tab could be retained in the same tab Further, Here I'll give the code details and snap shot pictures, 1. Default.aspx: Design Page First Second Third ...

Guidewire Related Interview Question and answers part 1

common Guidewire questions and answers 20 Guidewire BC Q&A Top 100 Guidewire Interview FAQ Guidewire Claimcenter 20 Interview Questions Guidewire Rating concepts

Login and Registration forms in C# windows application with Back end Microsoft SQL Server for data access

In this article, I'm gonna share about how to make login and register form with MS SQL database; 1. Flow Chart Logic 2. Normal Features 3. Form Designs Login Form Design Sign in Form Design Password Retrieve Form 4. Database Design and SQL queries and Stored Procedure Create new Database as "schooldata" create table registerdata (  ID int identity,  Username nvarchar(100),  Password nvarchar(100),  Fullname  nvarchar(100),  MobileNO nvarchar(100),  EmailID nvarchar(100)  ) select * from registerdata create procedure regis (  @Username as nvarchar(100),  @Password as nvarchar(100),  @Fullname as nvarchar(100),  @MobileNO as nvarchar(100),  @EmailID as nvarchar(100)  ) as begin insert into registerdata (Username, Password, Fullname, MobileNO,EmailID) values (@Username, @Password, @Fullname, @MobileNO, @EmailID) ...