skule@sormo.no
  • Start
  • Programmering
    • yy
    • Archived Articles
    • Create Article
    • List All Categories in an Article Category Tree
    • Category Blog
    • Category List
    • Bilagsregistrering
  • Teknikk
  • Media
  • Undervisning
  • Nettbutikk
  • Logg inn
  • Person
  1. Du er her:  
  2. Hjem
  3. Programmering
  4. List All Categories in an Article Category Tree
  5. Artikler

Minidrone

Detaljer
Treff: 0

Minidrone 

AI drone

RTK gps module

Detaljer
Treff: 0

Dokumentasjon

Module

Flere moduler

Basestasjon 

youtube

 

Links: Book about navigation: https://amzn.to/44sNNts ESP32 mini: https://s.click.aliexpress.com/e/_DEP... UM980 RTK-GNSS receiver: https://s.click.aliexpress.com/e/_DDO... RTK all-band GNSS antenna (order the "S" type): https://s.click.aliexpress.com/e/_DDY... or https://s.click.aliexpress.com/e/_Dlk... Cable (TNC male to SMA male): https://www.aliexpress.com/item/10050... Splitter (with a case, not needed for single receiver): https://s.click.aliexpress.com/e/_Dmu... DC Block (for 2 receivers): https://s.click.aliexpress.com/e/_DF9... u-blox RTK receiver: https://www.u-blox.com/en/product/zed... Sparkfun RTK solutions: https://www.sparkfun.com/rtk Michaels project: https://github.com/mazgch/hpg How to build a base station: https://simeononsecurity.com/guides/b... Base software for t services: https://github.com/incarvr6/esp32-ntr... RTK2GO: http://rtk2go.com/ Onocoy: https://www.onocoy.com/ euspa report: https://www.euspa.europa.eu/sites/def... Patreon supporter companies: https://www.welectron.com/ The links above are usually affiliate links that support the channel (at no additional cost to you). Supporting Material and Blog Page: http://www.sensorsiot.org GitHub: https://www.github.com/sensorsiot My Patreon Page:   / andreasspiess   Discord:   / discord   If you want to support the channel, please use the links below to start your shopping. No additional charges for you, but I get a commission on your purchases to buy new stuff for the channel My Amazon.com shop: https://www.amazon.com/shop/andreassp... For Banggood https://bit.ly/2jAQEf4 For AliExpress: For AliExpress: bit.ly/3MtXUY8 (just go on from here to your product) For Amazon US: https://www.amazon.com/shop/andreassp... For Amazon.de: http://amzn.to/2r0ZCYI For Amazon UK: http://amzn.to/2mxBaJf For ebay.com: http://ebay.to/2DuYXBp

Namespaces joomla

Detaljer
Treff: 0

https://chatgpt.com/share/67b1a98a-3744-8000-975b-9c95c747aa31

Make a component with meu access

Make a component with menu acccess using namespace

Namespace komponent XAMPP

ddNamespace komponent XAMPP

 

 

NFC Reader abel prosjekt

Detaljer
Treff: 0

https://arduinogetstarted.com/tutorials/arduino-rfid-nfc

Installere 8/ harddisk å centos server

Detaljer
Treff: 0

Du sa:
how to install a 8T hard disk on centos9 streaming server
ChatGPT sa:
ChatGPT

Installing and setting up an 8TB hard disk on a CentOS Stream 9 server involves the following steps:
1. Physically Install the Disk

    Power down the server.
    Connect the 8TB hard drive to the server's motherboard using a SATA cable or another appropriate interface (e.g., NVMe or SAS).
    Secure the drive in the drive bay or mounting slot.
    Power up the server.

2. Verify Disk Detection

After booting into CentOS, check whether the system detects the new disk:

lsblk

Look for the new disk (e.g., sdb, sdc, etc.) in the output.

Alternatively, use fdisk to list available disks:

sudo fdisk -l

3. Partition the Disk

Use a partitioning tool like fdisk, gdisk, or parted to create partitions on the disk.

Using fdisk:

    Launch fdisk:

    sudo fdisk /dev/sdX

    Replace sdX with the actual device name of your disk.

    Create a new partition:
        Press n to create a new partition.
        Follow the prompts to define the partition size (use the entire disk or specify a size).

    Write the changes:
        Press w to write the changes and exit fdisk.

4. Format the Partition

Format the newly created partition with a suitable filesystem. For an 8TB drive, ext4 or xfs is a good choice.

sudo mkfs.ext4 /dev/sdX1

Or for xfs:

sudo mkfs.xfs /dev/sdX1

Replace sdX1 with the appropriate partition name.
5. Mount the Partition

    Create a directory to use as a mount point:

sudo mkdir /mnt/data

Mount the partition:

sudo mount /dev/sdX1 /mnt/data

Verify the mount:

    df -h

6. Persistent Mount on Reboot

To ensure the disk is mounted automatically after a reboot:

    Get the UUID of the disk:

sudo blkid /dev/sdX1

Edit the /etc/fstab file:

sudo nano /etc/fstab

Add an entry like this:

    UUID=<disk-uuid>  /mnt/data  ext4  defaults  0  2

    Replace <disk-uuid> with the actual UUID and ext4 with the filesystem you used.

7. Test the Configuration

Test the /etc/fstab entry without rebooting:

sudo mount -a

If there are no errors, the configuration is correct.
8. Set Proper Permissions (Optional)

If the disk will be used by specific users or services, adjust permissions:

sudo chown -R <user>:<group> /mnt/data
sudo chmod -R 755 /mnt/data

Your 8TB hard disk is now installed, partitioned, formatted, and ready for use on CentOS Stream 9! Let me know if you encounter any issues.

  1. Debugging med PlatformIO
  2. phased arays
  3. esp32
  4. Machine Learning
  5. Brute force WiFi WPA2

Side 1 av 3

  • 1
  • 2
  • 3

logg inn

  • Glemt passord?
  • Glemt brukernavn?