F5F Stay Refreshed Power Users Networks Discuss installing software from NAS using SMB on a PC

Discuss installing software from NAS using SMB on a PC

Discuss installing software from NAS using SMB on a PC

M
murse1988
Junior Member
8
09-10-2023, 03:19 PM
#1
nas processes the .exe file via SMB on a PC, extracts it from the archive, and transfers it to the local system. If the file exceeds available RAM, it may not load fully or could be handled differently depending on system resources.
M
murse1988
09-10-2023, 03:19 PM #1

nas processes the .exe file via SMB on a PC, extracts it from the archive, and transfers it to the local system. If the file exceeds available RAM, it may not load fully or could be handled differently depending on system resources.

Z
ZainyZac
Junior Member
48
09-10-2023, 11:09 PM
#2
it runs the file straight from the NAS like it's on your device, but with extremely slow response times.
Z
ZainyZac
09-10-2023, 11:09 PM #2

it runs the file straight from the NAS like it's on your device, but with extremely slow response times.

_
_Hedgy_
Junior Member
2
09-11-2023, 12:08 AM
#3
An executable isn't usually stored all at once in RAM unless it's very small. The OS instead places it within the virtual address space of the running program. When the process tries to reach a mapped page not currently in memory, the CPU raises a page fault, prompting the OS to retrieve the needed information. If the data resides on a network location, fetching it becomes slower than accessing local storage. For instance, clicking a button that needs data from storage can cause a noticeable delay. Modern systems use features like Windows prefetcher to anticipate upcoming needs, loading data ahead of time and reducing impact if predictions are accurate. When physical memory is scarce, the OS swaps out less recently used pages to RAM, but if no space remains, the process ends with an out-of-memory error.
_
_Hedgy_
09-11-2023, 12:08 AM #3

An executable isn't usually stored all at once in RAM unless it's very small. The OS instead places it within the virtual address space of the running program. When the process tries to reach a mapped page not currently in memory, the CPU raises a page fault, prompting the OS to retrieve the needed information. If the data resides on a network location, fetching it becomes slower than accessing local storage. For instance, clicking a button that needs data from storage can cause a noticeable delay. Modern systems use features like Windows prefetcher to anticipate upcoming needs, loading data ahead of time and reducing impact if predictions are accurate. When physical memory is scarce, the OS swaps out less recently used pages to RAM, but if no space remains, the process ends with an out-of-memory error.