Laptop Install: Difference between revisions

From Knox Makers Wiki
Jump to navigation Jump to search
 
(15 intermediate revisions by the same user not shown)
Line 4: Line 4:


You can find the release at:
You can find the release at:
http://releases.ubuntu.com/18.04.1/ubuntu-18.04.1-desktop-amd64.iso
http://releases.ubuntu.com/18.04.4/ubuntu-18.04.4-desktop-amd64.iso




Line 10: Line 10:


<pre>
<pre>
Install Ubuntu
English
English
Install Ubuntu
Connect to this network:  [KM-Member5]
Minimal Installation
Minimal Installation
Install third-party software for graphics and Wi-Fi hardware and additional media formats
    [x] Download updates while installing Ubuntu
    [x]Install third-party software for graphics and Wi-Fi hardware and additional media formats
Erase disk and install Ubuntu
Erase disk and install Ubuntu
</pre>
</pre>
Line 25: Line 27:
[X] Log in automatically
[X] Log in automatically
</pre>
</pre>


== First Boot ==
== First Boot ==
Line 45: Line 46:
</pre>
</pre>


== Printers ==
<pre>
.
</pre>
== Software ==
<pre>
sudo add-apt-repository ppa:openscad/releases
</pre>
<pre>
sudo apt install inkscape slic3r openscad
</pre>
== Configure ==
<pre>
.
</pre>


== Theme ==
== Theme ==
Line 81: Line 58:
             - [ ] Use colors from system theme
             - [ ] Use colors from system theme
             - Text and Background Color
             - Text and Background Color
                 - Built-in schemes: [Solarized dark]
                 - Built-in schemes: [Tango dark]
             - Palette
             - Palette
                 - Built-in schemes: [Solarized]
                 - Built-in schemes: [Tango]
</pre>
</pre>


<pre>
<pre>
sudo apt install gnome-shell-extensions chrome-gnome-shell
sudo apt install gnome-shell-extensions chrome-gnome-shell
</pre>


<pre>
Firefox > https://extensions.gnome.org
Go to https://extensions.gnome.org in Firefox
    - Click here to install browser extension [Allow]
Click here to install browser extension [Allow]
    - Reload page
Reload page


Install Extensions:
Install Extensions:
Line 103: Line 78:
sudo add-apt-repository -u ppa:snwh/ppa
sudo add-apt-repository -u ppa:snwh/ppa
sudo apt install paper-icon-theme materia-gtk-theme
sudo apt install paper-icon-theme materia-gtk-theme
</pre>


<pre>
gnome-tweaks
gnome-tweaks
Desktop > Trash [Off]
Appearance > Themes > Applications [Materia-light]
Appearance > Themes > Applications [Materia-light]
Appearance > Themes > Icons [Paper]
Appearance > Themes > Icons [Paper]
Line 116: Line 92:
  - [x] Panel mode: extend to the screen edge
  - [x] Panel mode: extend to the screen edge
  - [x] Fixed icon size: scroll to reveal other icons
  - [x] Fixed icon size: scroll to reveal other icons
</pre>


Desktop > Trash [Off]
== Printers ==
<pre>
Meta > Printers
Add a Printer
Choose: [HP-LaserJet P2035n]
Gear Icon > Printer Details
    Name: KnoxMakersLaser
    Location: Classroom
</pre>
 
== Software ==
 
<pre>
sudo mkdir /opt/repos
sudo apt install git ubuntu-make
</pre>
 
<pre>
sudo add-apt-repository ppa:openscad/releases
sudo apt install openscad
</pre>
 
<pre>
sudo apt install inkscape
 
cd /opt/repos
sudo git clone https://github.com/KnoxMakers/KM-Laser.git
mkdir -p ~/.config/inkscape/extensions && cp KM-Laser/extensions/* "$_"
mkdir -p ~/.config/inkscape/palettes && cp KM-Laser/palettes/* "$_"
 
inkscape
    - Palette Bar Settings > Size > Medium
    - Palette Bar Settings > KM-Laser by Color
</pre>
 
<pre>
sudo apt install slic3r
 
cd /opt/repos
sudo git clone https://github.com/KnoxMakers/3D_Printing.git
 
slic3r
    - Configuration Assistant [Cancel]
    - File > Load Config Bundle: [/opt/repos/3D_Printing/Slic3r_config/Slic3r_config_bundle.ini]
</pre>
 
<pre>
umake ide arduino
</pre>
 
== Favorites ==
 
<pre>
Firefox
Files
Terminal
Inkscape
Slic3r
</pre>
 
== Bookmarks ==
 
Firefox > Right click beside tabs > Bookmarks Toolbar
 
<pre>
Knox Makers
    Website > https://knoxmakers.org
    Events > https://knoxmakers.org/events/
    Wiki > https://knoxmakers.org/wiki
    Join > https://knoxmakers.org/join/
 
Tools
    Moonraker (Lasercutter) > http://moonraker.knoxmakers.org
    Bumblebee (3d Printer) > http://bumblebee.knoxmakers.org
</pre>
</pre>

Latest revision as of 15:08, 22 February 2020

Image

We are using the latest LTS release of Ubuntu which is currently 18.04

You can find the release at: http://releases.ubuntu.com/18.04.4/ubuntu-18.04.4-desktop-amd64.iso


Install Options

Install Ubuntu
English
Connect to this network:  [KM-Member5]
Minimal Installation
    [x] Download updates while installing Ubuntu
    [x]Install third-party software for graphics and Wi-Fi hardware and additional media formats
Erase disk and install Ubuntu
    Your name: knoxmakers
Computer name: knoxmakers-laptopX  (where X is the laptop's number)
     username: knoxmakers
     password: knoxmakers

[X] Log in automatically

First Boot

What's new [Next]
Skip Livepatch [Next]
No, don't send system info [Next]
[Done]


Updates

sudo apt update
sudo apt upgrade
sudo reboot


Theme

Terminal
    - Edit > Preferences > Text
        - [X] Custom Font: Monospace Regular 14

    - Edit > Preferences > Colors
        - Rename Profile from Unnamed to knoxmakers
            - [ ] Use colors from system theme
            - Text and Background Color
                - Built-in schemes: [Tango dark]
            - Palette
                - Built-in schemes: [Tango]
sudo apt install gnome-shell-extensions chrome-gnome-shell

Firefox > https://extensions.gnome.org
    - Click here to install browser extension [Allow]
    - Reload page

Install Extensions:
  User Themes
  Dash to Dock
sudo add-apt-repository -u ppa:snwh/ppa
sudo apt install paper-icon-theme materia-gtk-theme

gnome-tweaks

Desktop > Trash [Off]

Appearance > Themes > Applications [Materia-light]
Appearance > Themes > Icons [Paper]
Appearance > Themes > Shell [Materia]

Extensions > Dash to Dock > [Gear Button]
 - Position on screen > Bottom
 - Intelligent autohide > Off
 - [x] Panel mode: extend to the screen edge
 - [x] Fixed icon size: scroll to reveal other icons

Printers

Meta > Printers
Add a Printer
Choose: [HP-LaserJet P2035n]
Gear Icon > Printer Details
    Name: KnoxMakersLaser
    Location: Classroom

Software

sudo mkdir /opt/repos
sudo apt install git ubuntu-make
sudo add-apt-repository ppa:openscad/releases
sudo apt install openscad
sudo apt install inkscape

cd /opt/repos
sudo git clone https://github.com/KnoxMakers/KM-Laser.git
mkdir -p ~/.config/inkscape/extensions && cp KM-Laser/extensions/* "$_"
mkdir -p ~/.config/inkscape/palettes && cp KM-Laser/palettes/* "$_"

inkscape
    - Palette Bar Settings > Size > Medium
    - Palette Bar Settings > KM-Laser by Color
sudo apt install slic3r

cd /opt/repos
sudo git clone https://github.com/KnoxMakers/3D_Printing.git

slic3r
    - Configuration Assistant [Cancel]
    - File > Load Config Bundle: [/opt/repos/3D_Printing/Slic3r_config/Slic3r_config_bundle.ini]
umake ide arduino

Favorites

Firefox
Files
Terminal
Inkscape
Slic3r

Bookmarks

Firefox > Right click beside tabs > Bookmarks Toolbar

Knox Makers
    Website > https://knoxmakers.org
    Events > https://knoxmakers.org/events/
    Wiki > https://knoxmakers.org/wiki
    Join > https://knoxmakers.org/join/

Tools
    Moonraker (Lasercutter) > http://moonraker.knoxmakers.org
    Bumblebee (3d Printer) > http://bumblebee.knoxmakers.org