Category: Uncategorized

  • Chrome browser in Ubuntu

    Chrome browser in Ubuntu

    Follow the instruction for installation: Add Key: wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add – Set repository: sudo sh -c ‘echo “deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main” >> /etc/apt/sources.list.d/google-chrome.list’ Install package: sudo apt-get update sudo apt-get install google-chrome-stable

  • PXE Server on Existing Network

    Many thanks to Sebastian Krysmanski’s original post! The Goal At the end of this article you’ll have a working PXE server that lets you boot memtest86+ over a network. The goal is to have a simple but working solution. This is why I’m using memtest. It consists of just one file and thus is easy to…

  • OpenVPN shortcut

    This script will show your current WAN IP address before and after connecting to your VPN. VALID_IP=”123.123.123.123″ #this is the correct IP you should be connected to myip=”$(dig +short myip.opendns.com @resolver1.opendns.com)” echo “My current WAN/Public IP address: ${myip}” echo “Starting OpenVPN connection” sleep 1 sudo openvpn –config ~/path/to/VPNConfig.ovpn –daemon echo “Establishing connection…” sleep 8 myip=”$(dig…

  • Raspberry Pi Static ip address

    Edit /etc/dhcpcd.conf sudo nano /etc/dhcpcd.conf Add the following rows add the bottom of the text. Leave the default text intact. interface eth0 static ip_address=192.168.1.99 interface wlan0 static ip_address=192.168.1.100 static routers=192.168.1.1 static domain_name_servers=202.62.64.3 8.8.8.8 Reboot

  • OpenSSH server install Ubuntu

    1. To install it, open terminal (Ctrl+Alt+T) or log in Ubuntu server and run command: sudo apt-get install openssh-server 2. After that, you should have SSH service enabled in your system, you may check its status by running command: sudo service ssh status 3. You may change some settings (e.g., the listening port, and root…

  • Mount Windows Shares Permanently

    CIFS installation sudo apt-get install cifs-utils Mounting unprotected (guest) network folders First, let’s create the mount directory. You will need a separate directory for each mount. sudo mkdir /media/windowsshare Then edit your /etc/fstab file (with root privileges) to add this line:

  • Missing titlebar at Zorin

    When you install Zorin, it could be possible that you don’t see a title bar at the top of you screen. This is because of an error in the Compiz window manager. You can avoid this problem by using Metacity instead. Follow the next steps: Log off Click on the blue Z next to your…

  • Raspberry RTL-SDR RX-Igate

    With help from this manual you can make your own APRS Igate with a Raspberry Pi and RTL-SDR dongle. If you find any incorrect information or you have additional info, please leave a comment! Offcourse change some of the commands to your personal settings like Callsign, gain, correction factor etc. Installation Warning, don´t put the…

  • RF-V16 Config commands

    RF-V16 Config commands

    Set master phone number Password = 123456 (default) Phonenumber = +31619xxxxxx (fill in complete number) 123456,sos1,0031619xxxxxx# Return message: 0031619xxxxxx has been set for the master number sucessfully. Set APN settings for example Dutch provider Simyo.nl APN = portalmmm.nl Port = 5080 User = empty Password = empty apn,portalmmm.nl,user,,pd,,pport,5080# Return message: Apn set succesfully! Reboot system…

  • Docker autostart container

    Docker autostart container

    Create service make file in /etc/systemd/system/ cd /etc/systemd/system nano /docker-[containername].service Insert following code: [Unit] Description=Docker [containername] server Requires=docker.service After=docker.service [Service] Restart=always ExecStart=/usr/bin/docker start -a [containername] ExecStop=/usr/bin/docker stop -t 2 [containername] [Install] WantedBy=default.target Add service to systemd systemctl enable docker-[containername].service When system reboots, service will be started.