blob: 40bf700dd0cd2b87ca6c1eb27660b35f968a72eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
(All the below mentioned commands are run from the 'kernel' directory.
Building
---
Requirements:
Solaris Nevada >= build 77
Sun Studio 11
Build the FUSE kernel modules
$ make
Note: gmake(1) will fail to build the kernel module.
Installing
---
Populate the proto area:
$ make install
Generate the package:
$ make pkg
Add the SUNWfusefs package to the system (as root):
# pkgadd -d packages SUNWfusefs
Update the boot archive (x86/x64 only)
# bootadm update-archive
Uninstalling
---
Remove the SUNWlibfuse from the system (as root):
# pkgrm SUNWfusefs
|