mirror of
https://github.com/BradNut/computer-setup-info
synced 2025-09-08 17:40:23 +00:00
Starting refactor out specific items like printers. Adding SSH enable and creating SSH keys for initial linux setup.
This commit is contained in:
parent
af1dafc25e
commit
72d4361f5d
2 changed files with 54 additions and 5 deletions
|
|
@ -19,16 +19,14 @@
|
|||
- If using bash: `test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile`
|
||||
- `echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile`
|
||||
|
||||
## Git
|
||||
## Dotfiles
|
||||
Dotfiles and editor preferences: https://github.com/BradNut/dotfiles
|
||||
|
||||
## Git
|
||||
Edit .gitconfig with name and email
|
||||
`git config --global.name "Your Name"`
|
||||
`git config --global.email "you@example.com"`
|
||||
|
||||
## Dotfiles
|
||||
|
||||
Dotfiles and editor preferences: https://github.com/BradNut/dotfiles
|
||||
|
||||
## Terminal
|
||||
|
||||
### Vim
|
||||
|
|
@ -70,3 +68,17 @@ Currently using zsh.
|
|||
|
||||
- [Bash profile](https://github.com/BradNut/dotfiles/blob/master/.bash_profile)
|
||||
- [.bashrc](https://github.com/BradNut/dotfiles/blob/master/.bashrc)
|
||||
|
||||
## SSH
|
||||
### Enable
|
||||
```
|
||||
$ sudo apt update
|
||||
$ sudo apt install openssh-server
|
||||
```
|
||||
Verify SSH is running:
|
||||
```
|
||||
$ sudo systemctl status ssh
|
||||
```
|
||||
|
||||
### Generating SSH Keys
|
||||
Step by step: [Generating New SSH Key and adding to the SSH Agent](https://docs.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)
|
||||
37
printers/README.md
Normal file
37
printers/README.md
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Printers
|
||||
## Brother
|
||||
### Drivers
|
||||
- [MFC-L3750CDW](https://support.brother.com/g/b/downloadtop.aspx?c=us_ot&lang=en&prod=mfcl3750cdw_us_eu_as)
|
||||
|
||||
#### Instructions
|
||||
* Mac and Windows Download Installer and run
|
||||
* Linux: One of the following
|
||||
* Download and install .deb files
|
||||
* Run bash script
|
||||
|
||||
##### Bash Script Instructions
|
||||
1. Download the tool.(linux-brprinter-installer-*.*.*-*.gz)
|
||||
- The tool will be downloaded into the default "Download" directory. (The directory location varies depending on your Linux distribution.) e.g. /home/(LoginName)/Download
|
||||
2. Open a terminal window.
|
||||
3. Go to the directory you downloaded the file to in the last step. By using the cd command. e.g. cd Downloads
|
||||
4. Enter this command to extract the downloaded file:
|
||||
- Command: gunzip linux-brprinter-installer-*.*.*-*.gz
|
||||
- e.g. gunzip linux-brprinter-installer-2.1.1-1.gz
|
||||
5. Get superuser authorization with the "su" command or "sudo su" command.
|
||||
6. Run the tool:
|
||||
- Command: bash linux-brprinter-installer-*.*.*-* Brother machine name
|
||||
- e.g. bash linux-brprinter-installer-2.1.1-1 MFC-J880DW
|
||||
7. The driver installation will start. Follow the installation screen directions.
|
||||
- When you see the message "Will you specify the DeviceURI ?",
|
||||
- For USB Users: Choose N(No)
|
||||
- For Network Users: Choose Y(Yes) and DeviceURI number.
|
||||
|
||||
The install process may take some time. Please wait until it is complete.
|
||||
|
||||
### Manuals
|
||||
|
||||
# Scanners
|
||||
## EPSON
|
||||
### Drivers
|
||||
- [EPSON Perfection](https://epson.com/Support/Scanners/Perfection-Series/Epson-Perfection-V550-Photo/s/SPT_B11B210201)
|
||||
### Manuals
|
||||
Loading…
Reference in a new issue