-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·247 lines (214 loc) · 9.63 KB
/
index.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="Jordi Warmenhoven" />
<meta name="generator" content="Pelican (VoidyBootstrap theme)" />
<title>Penguinsula</title>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous" />
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link rel="stylesheet" href="https://jwarmenhoven.github.io/theme/css/pygment.css" />
<link rel="stylesheet" href="https://jwarmenhoven.github.io/theme/css/voidybootstrap.css" />
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js" integrity="sha384-FFgGfda92tXC8nCNOxrCQ3R8x1TNkMFqDZVQdDaaJiiVbjkPBXIJBx0o7ETjy8Bh" crossorigin="anonymous"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js" integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo" crossorigin="anonymous"></script>
<![endif]-->
<link rel="shortcut icon" href="https://jwarmenhoven.github.io/favicon.ico" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle"
data-toggle="collapse" data-target="#main-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://jwarmenhoven.github.io/" rel="home">
<i class="fa fa-home fa-fw fa-lg"> </i> </a>
</div>
<div class="collapse navbar-collapse" id="main-navbar-collapse">
<ul class="nav navbar-nav">
<li>
<a href="https://jwarmenhoven.github.io/pages/about-post.html">About me</a>
</li>
<li>
<a href="https://jwarmenhoven.github.io/pages/projects.html">Projects</a>
</li>
<li class="divider"></li>
<li class="">
<a href="https://jwarmenhoven.github.io/archives.html">Archives</a>
</li>
<li class="divider"></li>
</ul> <!-- /nav -->
</div> <!-- /navbar-collapse -->
</div> <!-- /container -->
</nav> <!-- /navbar -->
<div class="jumbotron" id="overview">
<div class="container">
<h1><a href="https://jwarmenhoven.github.io/">Penguinsula</a></h1>
<p class="lead">Python, Stats, Modelling & Stuff</p>
</div>
</div>
<div class="container" id="main-container">
<div class="row">
<div class="col-md-9" id="content">
<article>
<abbr class="article-header-date">
Tue 01 August 2023
</abbr> <h1>
<a href="https://jwarmenhoven.github.io/Setting-up-NFS4-Kerberos-Linux-Synology-NAS.html" rel="bookmark"
title="Permalink to Mounting Synology NFSv4 shares in Linux using Kerberos authentication">
Mounting Synology NFSv4 shares in Linux using Kerberos authentication
</a>
</h1><div class="article-header-info">
<p>
Posted by <a href="https://jwarmenhoven.github.io/author/jordi-warmenhoven.html">Jordi Warmenhoven</a>
in
<a href="https://jwarmenhoven.github.io/category/blog.html">
Blog</a>
</p>
</div> <!-- /.article-header-info -->
<div class="summary">
<p>Many people have a Network Attached Storage (NAS) server in their home networks to share files and perhaps function as a private cloud. These NAS servers usually offer different ways (protocols) to share files with devices on the network. Most common protocols are:</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Server_Message_Block">Server Message Block (SMB)</a></li>
<li><a href="https://en.wikipedia.org/wiki/Network_File_System">Network File System …</a></li></ul>
<p class="content-emphasis"><a href="https://jwarmenhoven.github.io/Setting-up-NFS4-Kerberos-Linux-Synology-NAS.html">
Read more... <i class="fa fa-arrow-circle-right fa-fw fa-lg"></i>
</a></p>
</div> </article>
<hr />
<article>
<abbr class="article-header-date">
Sat 25 August 2018
</abbr> <h1>
<a href="https://jwarmenhoven.github.io/Linux-Deep-Learning-Machine.html" rel="bookmark"
title="Permalink to Building a modest Linux Deep Learning machine">
Building a modest Linux Deep Learning machine
</a>
</h1><div class="article-header-info">
<p>
Posted by <a href="https://jwarmenhoven.github.io/author/jordi-warmenhoven.html">Jordi Warmenhoven</a>
in
<a href="https://jwarmenhoven.github.io/category/blog.html">
Blog</a>
</p>
</div> <!-- /.article-header-info -->
<div class="summary">
<p>Some time ago I decided to move from a MacOS development environment back to Linux for exploring and working with Python datascience and statistical modelling libraries. Though most of the Python libraries and platforms offer support for MacOS, things are generally easier in Linux. One avoids a lot of special …</p>
<p class="content-emphasis"><a href="https://jwarmenhoven.github.io/Linux-Deep-Learning-Machine.html">
Read more... <i class="fa fa-arrow-circle-right fa-fw fa-lg"></i>
</a></p>
</div> </article>
<hr />
<nav class="index-pager">
</nav> <!-- /index-pager -->
</div><!-- /content -->
<div class="col-md-3 sidebar-nav" id="sidebar">
<div class="row">
<div class="col-xs-6 col-md-12">
<h4><i class="fa fa-comment fa-fw fa-lg"></i> Social</h4>
<ul class="list-unstyled social-links">
<li><a href="https://fosstodon.org/@Penguinsula" target="_blank">
<i class="fa fa-pencil-square fa-fw fa-lg" title="Mastodon"></i>
Mastodon
</a></li>
<li><a href="https://twitter.com/penguinsula" target="_blank">
<i class="fa fa-twitter-square fa-fw fa-lg" title="Twitter"></i>
Twitter
</a></li>
<li><a href="https://github.com/jwarmenhoven" target="_blank">
<i class="fa fa-github-square fa-fw fa-lg" title="GitHub"></i>
GitHub
</a></li>
<li><a href="https://www.linkedin.com/in/jordi-warmenhoven-9650805/" target="_blank">
<i class="fa fa-linkedin-square fa-fw fa-lg" title="LinkedIn"></i>
LinkedIn
</a></li>
</ul>
</div>
<div class="col-xs-6 col-md-12">
<h4><i class="fa fa-folder fa-fw fa-lg"></i> Categories</h4>
<ul class="list-unstyled category-links">
<li><a href="https://jwarmenhoven.github.io/category/blog.html" >
<i class="fa fa-folder-open fa-fw fa-lg"></i> Blog</a></li>
</ul>
</div>
</div> <!-- /row -->
<h4><i class="fa fa-tags fa-fw fa-lg"></i> Tags</h4>
<p class="tag-cloud">
<a href="https://jwarmenhoven.github.io/tag/kerberos.html">
<i class="fa fa-tag fa-fw fa-lg"></i>Kerberos
</a>
<a href="https://jwarmenhoven.github.io/tag/nfs4.html">
<i class="fa fa-tag fa-fw fa-lg"></i>NFS4
</a>
<a href="https://jwarmenhoven.github.io/tag/linux.html">
<i class="fa fa-tag fa-fw fa-lg"></i>Linux
</a>
<a href="https://jwarmenhoven.github.io/tag/manjaro.html">
<i class="fa fa-tag fa-fw fa-lg"></i>Manjaro
</a>
<a href="https://jwarmenhoven.github.io/tag/synology.html">
<i class="fa fa-tag fa-fw fa-lg"></i>Synology
</a>
<a href="https://jwarmenhoven.github.io/tag/nas.html">
<i class="fa fa-tag fa-fw fa-lg"></i>NAS
</a>
<a href="https://jwarmenhoven.github.io/tag/deep-learning.html">
<i class="fa fa-tag fa-fw fa-lg"></i>Deep Learning
</a>
<a href="https://jwarmenhoven.github.io/tag/gpu.html">
<i class="fa fa-tag fa-fw fa-lg"></i>GPU
</a>
<a href="https://jwarmenhoven.github.io/tag/python.html">
<i class="fa fa-tag fa-fw fa-lg"></i>Python
</a>
</p>
<hr />
</div><!--/sidebar -->
</div><!--/row-->
</div><!--/.container /#main-container -->
<footer id="site-footer">
<address id="site-colophon">
<p class="text-center text-muted">
Site built using <a href="http://getpelican.com/" target="_blank">Pelican</a>
• Theme based on
<a href="http://www.voidynullness.net/page/voidy-bootstrap-pelican-theme/"
target="_blank">VoidyBootstrap</a> by
<a href="http://www.robertiwancz.com/"
target="_blank">RKI</a>
</p>
</address><!-- /colophon -->
</footer>
<!-- DISQUS script for displaying comment count -->
<script type="text/javascript">
var disqus_shortname = 'penguinsula';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<!-- javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
</body>
</html>