Error in the souce list in Ubuntu when running terminal

Asked By 0 points N/A Posted on -
qa-featured

I have an error in line 3 when running my 'sudo update' command , how can I rectify this? is there a website where I can get all the listed Ubuntu and linux rectory servers? I think my be may be corrupted, i need to start from a fresh. Can someone provide the link please?

SHARE
Answered By 590495 points N/A #192739

Error in the souce list in Ubuntu when running terminal

qa-featured

I guess what you mean by “sudo update” is “sudo apt-get update”. When you use “sudo apt-get update”, it will not actually install new versions of applications or software. “apt-get update” downloads the lists of packages from the repositories and then updates them to retrieve the information on the latest versions of packages including their dependencies.

It re-syncs the package index files from their sources. The indexes of the available packages are obtained from the location indicated in “/etc/apt/sources.list(5)”. If you want to upgrade, it is always necessary to do an update first using “apt-get update”. Once your package lists have been updated, you can now do an upgrade.

To upgrade, use “apt-get upgrade”. It will retrieve new versions of all the packages that exist on the computer.

Related Questions