Subcategories

  • Linux is a Unix-like, open source and community-developed operating system (OS) for computers, servers, mainframes, mobile devices and embedded devices.

    2 Topics
    2 Posts
    SumisuS
    To set a static IP address, we are going to use netplan. First make sure that it is installed using this command: sudo apt install openvswitch-switch-dpdk Next we need to figure out what interface our server is using. To do that we need to run: ip route show After we run the command we are looking for the interface. When I ran it, I got this: default via 192.168.1.1 dev ens18 proto dhcp src 192.168.1.110 metric 100 192.168.1.0/24 dev ens18 proto kernel scope link src 192.168.1.110 metric 100 192.168.1.1 dev ens18 proto dhcp scope link src 192.168.1.110 metric 100 We need to find the line with 192.168.1.0/24. So my interface is going to be ens18 Next we need to make the configuration file. I am going to use nano to do this. sudo nano /etc/netplan/99_config.yaml In the configuration file we need to add this: network: version: 2 renderer: networkd ethernets: ens18: dhcp4: no addresses: - 192.168.1.5/24 routes: - to: default via: 192.168.1.1 nameservers: addresses: [192.168.1.1, 8.8.8.8, 8.8.4.4] Be sure to change the line under ethernets to your interface like I have here. Under addresses, this is where we are going to put the IP address we want to use: 192.168.1.5/24. If you are using nano, press Ctrl+X then Enter to save the file. After we make the configuration file, we need to set the permissions for the file. To do that we use this command: sudo chmod 600 /etc/netplan/* This will set all the configuration files in that directory to have the correct permissions. Now all we need to do is run this command: sudo netplan apply This will apply the configuration, now your IP address is set. One last thing that I like to do, is to remove this 192.168.1.1 dev ens18 proto dhcp scope link src 192.168.1.110 metric 100 configuration. To do that we need to run: sudo ip route del 192.168.1.1 This will delete that configuration. Now everything should be set.
  • Windows is a Microsoft operating system that allows users to perform a variety of tasks on their computer.

    2 Topics
    2 Posts
    SumisuS
    Game Key 1 Key 2 Key 3 Monopoly 52142652 52136525 52137097 Scrabble 46244097 46243219 Backgammon 43215790 Bejeweled 2 RHLN5JH4 Text Twist R6TPH0E4 Zuma RFXPH7A4 Sim City 2000 HKOL20A9OM7Y Yahtzee 77914236 Battleship 96982058 96973753 Tetris GamePak 36526834 Other Keys: Here is a link to more keys: PrivateBin
  • The Raspberry Pi is a small yet mighty single-board computer that has become a cornerstone in the realms of digital creativity and DIY projects.

    1 Topics
    1 Posts
    SumisuS
    To setup a new WiFi connection on the Raspberry Pi using only the SD card, you will need to create a new file in /etc/NetworkManager/system-connections called MySSID.nmconnection. Replace the MySSID with the name of your network, if your network has spaces create it like this: sudo nano 'My Network With Spaces.nmconnection'. For the contents of the file, it needs to look like this: [connection] id=My Network With Spaces uuid= type=wifi [wifi] cloned-mac-address= mode=infrastructure ssid=My Network With Spaces [wifi-security] key-mgmt=wpa-psk psk=My Network Password [ipv4] method=auto [ipv6] addr-gen-mode=stable-privacy method=auto [proxy] Be sure to change id and ssid to be the name of your network, you don’t need to add quotes if there are spaces in your networks name. Also be sure to change psk to be your network password. When you are done use Ctrl+X to save the changes. Now we need to restrict the file’s access rights because NetworkManager requires it to be only accessible by root: sudo chmod -R 600 /etc/NetworkManager/system-connections/MySSID.nmconnection sudo chown -R root:root /etc/NetworkManager/system-connections/MySSID.nmconnection Now you should be able to automatically connect to your WiFi network during the next boot.
  • Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure.

    19 Topics
    19 Posts
    SumisuS
    [image: logo_long.svg] What is Crafty Controller? Crafty Controller is a free and open-source Minecraft launcher and manager that allows users to start and administer Minecraft servers from a user-friendly interface. LISCENSE https://gitlab.com/crafty-controller/crafty-4/-/raw/master/LICENSE Docker Compose services: crafty: container_name: crafty_container image: registry.gitlab.com/crafty-controller/crafty-4:latest restart: always environment: - TZ=America/Chicago ports: - "8443:8443" # HTTPS - "8123:8123" # DYNMAP - "19132:19132/udp" # BEDROCK - "25500-25600:25500-25600" # MC SERV PORT RANGE volumes: - backups:/crafty/backups - logs:/crafty/logs - servers:/crafty/servers - config:/crafty/app/config - import:/crafty/import volumes: backups: logs: servers: config: import:
Forum Stats

0

Online

3

Users

30

Topics

30

Posts

Ad