Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
Ubuntu 18.04 Realtime Kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nikhil Ambardar
Ubuntu 18.04 Realtime Kernel
Commits
ebf63723
Commit
ebf63723
authored
5 years ago
by
Johannes Mey
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
b57bb680
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+27
-0
27 additions, 0 deletions
README.md
with
27 additions
and
0 deletions
README.md
+
27
−
0
View file @
ebf63723
# Realtime Kernel for Ubuntu 18.4
# Realtime Kernel for Ubuntu 18.4
⚠ this repository uses git-lfs. when cloning, make sure LFS is installed locally.
These are deb packages built for Ubuntu Bionic.
These are deb packages built for Ubuntu Bionic.
Used Kernel sources:
Used Kernel sources:
...
@@ -9,3 +11,28 @@ Used Kernel sources:
...
@@ -9,3 +11,28 @@ Used Kernel sources:
Kernel config:
Kernel config:
-
Preemption Model: Fully Preemptible Kernel (RT)
-
Preemption Model: Fully Preemptible Kernel (RT)
## Installation
-
simply install the packages using
`dpkg -i`
## Verifying that the Realtime Kernel is Running
-
reboot after kernel installation, selecting the new kernel in Grub
-
run
`uname -a`
, the result should contains
`PREEMPT RT`
## Set User Permissions
-
add a group named realtime and add the user controlling your robot to this group:
```
sudo addgroup realtime
sudo usermod -a -G realtime $(whoami)
```
-
add the following limits to the realtime group in /etc/security/limits.conf:
```
@realtime soft rtprio 99
@realtime soft priority 99
@realtime soft memlock 102400
@realtime hard rtprio 99
@realtime hard priority 99
@realtime hard memlock 102400
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment