- Notifications
You must be signed in to change notification settings - Fork2
Simple NFS implementation in C++
License
NotificationsYou must be signed in to change notification settings
HotSushi/SushiNFS
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is SimpleNFS implementation usinggRPC for RPC communication between server and client.
- gRPC currently to install gRPC for C++, you need to build from source.
- Protocol Buffers v3 will be installed automatically while building gRPC.
You need to set environment variableGRPC_SOURCE
to point to the directory with grpc source built above.
user:~$ export GRPC_SOURCE=~/grpc/
Build the project by runningmake
in the main directory. If something goes wrong trymake clean
and thenmake
.
user:~/SushiNFS$ make
Both server and client executables will be present in/bin
directory.
- To run server
user:~/SushiNFS/bin$ ./HelloServer
- To run client
user:~/SushiNFS/bin$ ./HelloClient