Nvidia Driver Knowledge For Linux
Terms PRIME render offload PRIME render offload is the ability to have an X screen rendered by one GPU, but choose certain applications within that X screen to be rendered on a different GPU. DR...
Terms PRIME render offload PRIME render offload is the ability to have an X screen rendered by one GPU, but choose certain applications within that X screen to be rendered on a different GPU. DR...
Address spaces An address space is the range of memory addresses that a process can reference. Memory management unit Between CPU and memory, there is memory management unit (MMU), which transla...
Some registers that may help work out the error in riscv: scause (Supervisor Cause Register) indicates the type of the page fault. sepc: Supervisor Exception Program Counter stval (Superviso...
Isolation Real world examples Think in Strawman design: If no operating system, there is no strong isolation between programs. Unix interface abstracts the hardware resources. processes: ...
This lab requires python<=3.12 (to import module pipes). I’d like to record my process of implementing primes.c. At first, I didn’t know that subprocess who forked from the parent should clos...
OS purposes Abstract the hardware Both for convenient and portability Multiplex Of applications Isolation Between applications Sha...
What is multicast Imagine this scenario: An example of network topology for multicast Now A wants to send same packets to address group containing B, C, E, and X. It can simply send packets ove...
Routers RIP enable conf t[erminal] router rip [version 2] net[work] <ip-address-1> # Declare connected network net[work] <ip-address-2> net[work] ...
What happened My systemd service clash won’t start on boot, which is under user mode. What I’ve done: In [Unit], Change After=network.target to After=default.target. This is because that...
End-to-end routing Approaches Flooding. As its name, packets go anywhere (it may form loops). Sourcing routing. Source router put the full path (from source to destination) in packets. For...