From charlesreid1

No edit summary
m (Replacing charlesreid1.com:3000 with git.charlesreid1.com)
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
Debian server machine.
Debian server machine.


=New Notes=
See [[Jupiter/Data]] for database schema.


==aptitude install==
=installation=


keeping track until apt get script in dotfiles repo
See [[Ubuntu/LiveUSB]] or [[Kali/LiveUSB]] for live USB installation steps.


<pre>
==fixing problems with wifi interface names==
apt-get install -y \
    aptitude apache build-essential \
    git vim golang
</pre>


and basic toolbox:
https://www.linuxquestions.org/questions/linux-networking-3/wireless-adapter-interface-renamed-to-long-string-instead-of-wlan0-4175556296/


<pre>
<pre>
apt-get install -y vim screen tmux tshark tcpdump git stunnel
vi /etc/default/grub
</pre>
</pre>


==ipython notebook or jupyter==
and change the following variable to:
 
See [[Ubuntu Jupyter]]


<pre>
<pre>
sudo apt-get install -y \
GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0"
    libatlas-dev libpng12-dev libfreetype6 libfreetype6-dev \
    g++ libzmq-dev liblapack-dev gfortran python-dev \
    build-essential python-qt4
 
pip install numpy scipy tornado \
    pyzmq pandas ipython pygments matplotlib
</pre>
</pre>


=Old Notes=
==dotfiles and scripts==
 
linking internal and external networks through a gateway server, Jupiter
 
==external IP==
 
connecting with external VPN service, private internet access
 
works.
 
==internal IP==
 
connecting with wireless router, which is in turn connected to various other devices
 
wifi usb dongle. connected to Widy?


==tunnel==
See https://git.charlesreid1.com/dotfiles/debian


idea here is to connect to the VPN via the external IP, creating a tunnel interface.
Contains:
* Dotfiles
* Install scripts
* Cleanup/de-bloat scripts
* Setup for Python


then connect the internal IP to the tunnel interface.


==flags==


[[Category:Machine]]
[[Category:Machine]]
[[Category:Linux]]
[[Category:Linux]]

Latest revision as of 03:34, 9 October 2019

Debian server machine.

See Jupiter/Data for database schema.

installation

See Ubuntu/LiveUSB or Kali/LiveUSB for live USB installation steps.

fixing problems with wifi interface names

https://www.linuxquestions.org/questions/linux-networking-3/wireless-adapter-interface-renamed-to-long-string-instead-of-wlan0-4175556296/

vi /etc/default/grub

and change the following variable to:

GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0"

dotfiles and scripts

See https://git.charlesreid1.com/dotfiles/debian

Contains:

  • Dotfiles
  • Install scripts
  • Cleanup/de-bloat scripts
  • Setup for Python


flags