Urgent.News

the world's headlines, one feed

Editions

Tech

EU’s Starlink alternative is finally moving beyond the planning stage

The EU is expanding IRIS² to 348 satellites, creating a sovereign network for governments, defence forces, emergency services, and critical infrastructure.

EU’s Starlink alternative is finally moving beyond the planning stage

The European Union is taking a distinct approach compared to SpaceX's efforts to challenge major telecom providers. The EU aims to establish a satellite network under its own control, with the European Commission and the SpaceRISE consortium signing a pact for IRIS², the EU’s secure satellite connectivity program. This expansion brings the satellite constellation to 348 spacecraft, comprising 330 low Earth orbit and 18 medium Earth orbit units, with launches slated for 2029.

IRIS² primarily serves governments, defense, security, emergency services, and critical infrastructure, rather than consumer broadband. The program's growth stems from the crucial role Starlink played in Ukraine during network outages, and during natural disasters where terrestrial infrastructure can be instantly disabled. Concern over reliance on an American-owned service like Starlink during crises spurred the EU's move.

The added 66 satellites specifically aim to bolster defense, security, and emergency communications, potentially boosting EU secure governmental capacity by 60% and global capacity by 54%. ESA will oversee technical development and validation, while SpaceRISE members SES, Eutelsat, and Hispasat collaborate on satellites and ground infrastructure alongside European manufacturers.

Despite still years away from operational status, IRIS² has transitioned beyond planning, with Europe actively building the necessary hardware, funding, and industrial capacity to ensure critical communications are not contingent on external providers.

Written by urgent.news from Digital Trends's reporting — not their text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at digitaltrends.com →

More in Tech

Safeguarding Your Systems: An Introduction to the Circuit Breaker Pattern

The circuit breaker pattern is a modern software design strategy used to detect failures and prevent an application from repeatedly executing an operation that is highly likely to fail.

  • Circuit breaker pattern prevents continuous execution of likely-failing operations
  • Acts as protective shield around external calls, halting traffic to broken services
  • Operates in Closed, Open, and Half-Open states to manage service recovery

Thinking and Decision Making: Cognitive Processes Explained

Introduction Every day you make thousands of decisions: what to eat, which route to take, whether a news headline is true. You probably think you're reasoning logically through each choice.

  • Decision-making relies on algorithms and heuristics
  • Heuristics are mental shortcuts, not always reliable
  • Common heuristics: availability and representativeness

Linux Memory Region Data Structures

The memory descriptor ( mm_struct ) maintains information about a process's address space (current memory it owns). One of its members is a linked list of Virtual Memory Areas (VMAs) , represented by…