About
This community is about bringing the people of the valley together. So much could be sourced from our lovely valley if we had a deeper connection within our community.
We provide Open-Source solutions to residents of the South Peninsula Valley.
👩❤️👩 Community
Online Members
No online members at the moment
-
Andre Tiltman posted a new topic "Hard Disks (Linux)" – 5 days, 19 hours ago
List Hard Drives sudo fdisk -l Get Disk UUID ls -l /dev/disk/by-uuid/ Mount Points sudo nano /etc/fstab Samba Mount Point /etc/fstab //192.168.1.100/Documents /mnt/Documents cifs vers=3.0,credentials=/root/.SMBcredentials Samba Credentials /root/.SMBcredentials username=user password=password Mount by UUID UUID=76560081560043F9 /mnt/Documents ntfs…Read more
-
Charmain Tedbury became a registered member 1 week ago
-
Cathy became a registered member 2 weeks, 1 day ago
-
Andre Tiltman posted a new topic "Minecraft Server (Bedrock edition)" – 1 month ago
Minecraft Bedrock Dedicated Minecraft servers hosted through Docker. Vanilla Server Server Name: Vanilla Server Description: Vanilla Minecraft no mods or cheats Game Mode: Survival Server Address: joblox.co.za Port: 19132 Mod Server (Default) Name: Mod Server Description: Minecraft with… Read more»
-
Andre Tiltman posted a new topic "Ubuntu Disk Space" – 1 month, 1 week ago
Logs
Identify Log Files
cd /var/log
Empty Logs
sudo sh -c ‘echo > /var/log/syslog’
Logrotate
Install Tool
sudo apt-get install logrotate
Create Init.D File
sudo nano /etc/logrotate.d/my_logs.conf
Paste
/var/log/syslog
/var/log/auth.log {
su root root
daily
rotate 7
compress
delaycompress
missingok
notifempty
create 640 root…Read more -
Linda Navon became a registered member 1 month, 2 weeks ago
-
Richard Kaplan became a registered member 2 months ago
-
Andre Tiltman posted a new topic "Removing Hard Drive Partitions [Reformat]" – 2 months ago
If you previously had your hard drive inside your computer and want to now use it as an external, you may want to keep these things in mind. The hard drive may have previously had an operating system on it… Read more»
-
Andre Tiltman posted a new topic "Resetting the CMOS" – 2 months ago
The CMOS battery provides power to the motherboards so it can store start up information. Sometimes the motherboard will report an error and prevent the computer from booting, by removing the battery you flush any old errors that could be… Read more»
-
Kate Tiltman changed their profile picture 2 months ago
-
Andre Tiltman replied😎 Very Cool!
-
-
Diane Fisher became a registered member 2 months, 1 week ago
-
Andre Tiltman posted a new topic "[EBooks] readarr" – 2 months, 1 week ago
docker run -d \ –name=readarr \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Africa/Johannesburg \ -p 8787:8787 \ -v /path/to/data:/config \ -v /path/to/books:/books `#optional` \ -v /path/to/downloadclient-downloads:/downloads `#optional` \ –restart unless-stopped \ lscr.io/linuxserver/readarr:develop
-
Andre Tiltman posted a new topic "Computer Shortcut Keys" – 2 months, 1 week ago
Important shortcut keys for computer.. CTRL+A. . . . . . . . . . . . . . . . . Select AllCTRL+C. . . . . . . . . . . . . . . . …. Read more»
-
Andre Tiltman posted a new topic "Signal the frog books his Licence [GC60190]" – 2 months, 2 weeks ago
Difficulty: 3.5 Terrain: 1.5 Size: Large Description: Signal the frog books his learners Licence.Help Signal book his learners License so that he can learn drive to more geocaches.”The link’s to the website’s have not been checked by Groundspeak nor by… Read more»
-
Andre Tiltman posted an update 2 months, 2 weeks ago
Simons Town on Navy Day -
Andre Tiltman posted a new topic "[www] WordPress (Docker)" – 2 months, 2 weeks ago
Install Create a Folder mkdir your-website-name cd your-website-name nano docker-compose.yml Docker Compose services: db: # We use a mariadb image which supports both amd64 & arm64 architecture image: mariadb:10.6.4-focal # If you really want to use MySQL, uncomment the following… Read more»
-
Andre Tiltman posted a new topic "[Install Guide] Roblox (Ubuntu 22.04)" – 2 months, 3 weeks ago
Add 32bit arch: sudo dpkg –add-architecture i386 add Wine keyring sudo mkdir -pm755 /etc/apt/keyrings sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key Add Wine Repo sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources Update sudo apt update…Read more
-
Andre Tiltman posted a new topic "Change Hostname [Ubuntu]" – 3 months ago
Rename Computer
sudo nano /etc/hostname
Update hosts
sudo nano /etc/hosts
Reboot
sudo reboot
-
Andre Tiltman posted a new topic "Jellyseerr" – 3 months ago
Make Directory
mkdir jellyseerr
Clone Repo
git clone https://github.com/Fallenbagel/jellyseerr.git
Launch Docker File
docker-compose up -d
-
Andre Tiltman posted a new topic "[lvm] Volume Resize" – 3 months, 1 week ago
Extend Linux Volume
# Increase the Physical Volume (pv) to max size
pvresize /dev/sda3# Expand the Logical Volume (LV) to max size to match
lvresize -l +100%FREE /dev/mapper/ubuntu–vg-ubuntu–lv# Expand the filesystem itself
resize2fs /dev/mapper/ubuntu–vg-ubuntu–lv - Load More