EDV: Unterschied zwischen den Versionen

Aus Wiki_2020
Wezi (Diskussion | Beiträge)
Wezi (Diskussion | Beiträge)
Zeile 219: Zeile 219:
*[http://www.freecodecamp.org/news/git-and-github-for-beginners/ git&github Tutorial]<br>
*[http://www.freecodecamp.org/news/git-and-github-for-beginners/ git&github Tutorial]<br>
*[http://www.freecodecamp.org/news/git-cheat-sheet/ Git Cheat Sheet]<br>
*[http://www.freecodecamp.org/news/git-cheat-sheet/ Git Cheat Sheet]<br>
cd /D U:\ArduinoIDE_2.0.1\portable\mcp23xxx_blink<br>
git init
''Initialized empty Git repository in U:/ArduinoIDE_2.0.1/portable/mcp23xxx_blink/.git/''<br>
git add .
''warning: in the working copy of 'mcp23xxx_blink.ino', LF will be replaced by CRLF the next time Git touches it''<br>
git status
''On branch master
No commits yet
Changes to be committed:
  (use "git rm --cached <file>..." to unstage)
        new file:  Blink.png
        new file:  mcp23xxx_blink.ino''
git commit -m "first commit"
''[master (root-commit) f64e5b1] first commit
2 files changed, 60 insertions(+)
create mode 100644 Blink.png
create mode 100644 mcp23xxx_blink.ino''


== Sonstiges ==
== Sonstiges ==
*[http://www.bealecorner.org/red/test-patterns/ High resolution Test Patterns]
*[http://www.bealecorner.org/red/test-patterns/ High resolution Test Patterns]

Version vom 11. November 2022, 20:04 Uhr

EDV

Hardware

Project Neubau

Hardware

Software

Betriebssystem
Treiber

in dieser Reihenfolge installiert:

  1. Chipsatz
  2. Mainboard
  3. Grafikkarte
  4. LAN
  5. Canon Drucker Pixma IP4300
Benchmarks

Router(Speedport Fritz )

Intel CPU Core i7 4770K

USB

NAS

ASROCK Z87 Extreme4

TV Karten

Pinnings

Software

Linux Mint
Programme
Notfallsysteme USB/CD
Datenbank

sqlitebrowser
sqlite-backup

Backing up the database
To make a backup copy of the database, simply do a "dump" and redirect the results to a file.
cd /home/sqlite
sqlite3 sample.db .dump > sample.bak

Software - Software, Quellen etc.

Backup

Betriebssysteme related

Win 10 related

Boot / Multiboot
Datenrettung
Schadsoftware

Viren und Zeugs - Plagegeister etc.

Internetsicherheit

Passwordcrack Wordlists

HowTo's

Virtualisierung

Git & Github


cd /D U:\ArduinoIDE_2.0.1\portable\mcp23xxx_blink
git init Initialized empty Git repository in U:/ArduinoIDE_2.0.1/portable/mcp23xxx_blink/.git/
git add . warning: in the working copy of 'mcp23xxx_blink.ino', LF will be replaced by CRLF the next time Git touches it
git status
On branch master
No commits yet
Changes to be committed:
 (use "git rm --cached <file>..." to unstage)
       new file:   Blink.png
       new file:   mcp23xxx_blink.ino
git commit -m "first commit"
[master (root-commit) f64e5b1] first commit
2 files changed, 60 insertions(+)
create mode 100644 Blink.png
create mode 100644 mcp23xxx_blink.ino

Sonstiges