1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2010-08-04-samba-not-showing-symlinks.md

27 lines
688 B
Markdown
Raw Permalink Normal View History

2015-04-13 20:20:11 +01:00
---
created: 2010-08-04 10:47:49 +0200
2022-01-23 17:14:59 +00:00
layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/08/04/samba-not-showing-symlinks.html
2015-04-13 20:20:11 +01:00
tags:
2022-01-23 17:14:59 +00:00
- know-how
- software
- linux
- samba
title: Samba not showing Symlinks
toc: false
updated: 2010-08-04 10:47:49 +0200
2015-04-13 20:20:11 +01:00
---
2022-01-23 17:14:59 +00:00
2015-04-13 20:20:11 +01:00
After an upgrade to *Ubuntu Lucid Lynx*, all Samba shares were missing symlinks, esp. symlinks to directories outside
the share.
To enable these again, add the following lines into the `[global]` section of your `/etc/samba/smb.conf`:
{% highlight ini %}
follow symlinks = yes
wide links = yes
unix extensions = no
{% endhighlight %}
2022-01-23 17:14:59 +00:00
Then restart `smbd` and you should see the symlinks again.