Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debian packages update routine - updated #3673

Merged
merged 1 commit into from
Apr 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions doc/distribution_linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,16 @@ Verify that the kernel is updated :
`modinfo uvcvideo | grep "version:"` should include `realsense` string

## Upgrading the Packages:
When upgrading, be sure to:
- Remove the old records and update your source list:
`sudo rm -f /etc/apt/sources.list.d/realsense-public.list`
`sudo apt-get update`
Refresh the local packages cache by invoking:
`sudo apt-get update`

Upgrade all the installed packages, including `librealsense` with:
`sudo apt-get upgrade`

To upgrade selected packages only a more granular approach can be applied:
`sudo apt-get --only-upgrade install <package1 package2 ...>`
E.g:
`sudo apt-get --only-upgrade install librealsense2-utils librealsense2-dkms`

## Uninstalling the Packages:
**Important** Removing Debian package is allowed only when no other installed packages directly refer to it. For example removing `librealsense2-udev-rules` requires `librealsense2` to be removed first.
Expand Down