Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
1
1-tracer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Insights
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
SO2
1-tracer
Commits
a6c7eb37
Commit
a6c7eb37
authored
2 years ago
by
Dragoș-Iulian ARGINT (94922)
Browse files
Options
Downloads
Patches
Plain Diff
Add initial documentaion
Signed-off-by:
Dragos Iulian ARGINT
<
dragos.argint@stud.acs.upb.ro
>
parent
a8750300
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+62
-6
62 additions, 6 deletions
README.md
with
62 additions
and
6 deletions
README.md
+
62
−
6
View file @
a6c7eb37
#
Perfect assignment
#
README
Write a program that given a number as input argument prints the corespondig number of 1s on standard output.
## Setup
1.
Login into your gitlab accout using the UPB login at https://gitlab.cs.pub.ro/users/sign_in
2.
Make a
**private**
fork of this repository.
In the right corner you can find the fork button.
After clicking it you, the following should be prompted at you:
E.g:

```
bash
$>
./binary 3
Select your user as the namespace for your fork.
1 1 1
And please make sure the visibility level is set to
**Private**
3.
Clone your repo locally
```
$ git clone <remote_of_your_private_fork>
```
## Working on the assignment
Start the assignment from the skeleton inside the
`src/`
directory.
The first option is to code in the
`src/`
and run the checker using the command:
```
./local.sh checker 0-list
```
This will start the docker, start the SO2 VM inside the docker and run the checher for you inside the VM.
The second and recommended option is to connect to the docker interactively and then to the VM and run the checker manually.
1.
Connect to the docker
```
./local.sh docker interactive
```
If you use native Linux you can benefit from KVM superpowers using the
`--privileged`
argument.
Thus the container will be started in privileged mode and we have access to KVM.
After executing the last command you should get a prompter in the docker.
When running in interactive mode the
`src/`
directory is mounted to the
`/linux/tools/labs/skels/assignments/0-list`
.
So any change in one would affect the other.
**Be careful not to delete your code!**
.
We encourage you to make as many commits as possible on gitlab!
2.
Build your assignment:
```
```
# you should be in /linux/tools/labs
make build
```
3.
You can start the VM with the following command:
```
make console
```
After this command you should get a prompter inside the VM
4.
Copy the
*
.ko into the skels/assginments/0-list-checker
```
cd skels/assignments/0-list-checker
cp ../0-list/list.ko .
```
5.
Run the checker
```
# you should be in skels/assignments/0-list-checker
sh _checker
```
# Submiting the assignment
TODO
\ No newline at end of file
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