Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
isoonline
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Per Cederqvist
isoonline
Commits
0cf11600
Commit
0cf11600
authored
21 years ago
by
Per Cederqvist
Browse files
Options
Downloads
Patches
Plain Diff
"Common tasks" section added.
parent
678a0cde
Branches
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
+32
-0
32 additions, 0 deletions
README
with
32 additions
and
0 deletions
README
+
32
−
0
View file @
0cf11600
...
@@ -30,3 +30,35 @@ Bootstrapping from CVS
...
@@ -30,3 +30,35 @@ Bootstrapping from CVS
======================
======================
Use the bootstrap.sh script to create a configure script.
Use the bootstrap.sh script to create a configure script.
Common Tasks
============
To scan for new files:
$ ./scanner.py
To create an ISO image:
$ ./mkiso.py
To burn the image:
# cdrecord -v dev=0,0 -eject /movies/tmp/11.iso
To erase a CD-RW disk:
# cdrecord -v dev=0,0 blank=fast
or, if that fails:
# cdrecord -v dev=0,0 -force blank=all
To remove all traces of a disk:
$ mysql -D isoonline
mysql> select * from media;
mysql> select media, count(*) from contents group by media;
mysql> select count(*) from contents where media = 11;
mysql> delete from contents where media = 11;
mysql> delete from media where media_id = 11;
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