Skip to content

Ubuntu 12.04 – Setting up Samba (3.6.3)

Hello,

Today I decided to format my Home Server and when I setuped it I had a few problems.

“Failed to Retrieve Share List from Server” when I was trying to connect to my ubuntu 12.04 server. Inside the [global] section I add:

name resolve order = bcast host

I did this in my normal computer too. (I’m not exactly sure that this is needed I don’t think so). Rebooted and it is working.

Inside my logs I was getting a lot of smb_panic():

[2013/03/07 22:13:43.607536, 0] lib/util.c:1122(smb_panic) smb_panic(): calling panic action [/usr/share/samba/panic-action 1928]

(Again, I’m not sure that this is totally and exclusive related to this problem, but it worth to say, so you could try it too.)

Other message that I was seeing when trying to smbclient -L SERVER was:

NT_STATUS_PIPE_BROKEN

If you want to see my full smb.conf file keep reading!

My configs file is a Shared folder which is read only, but anyone could read it (guest yes), and the other one is Writable, where anybody can write and read (without authentication). In other words, all my setup don’t uses authentications, it is all done by guests users. This is particularly good in my case, because I can put some interesting files in Shared Folder and guarantee that nobody will screw everything and the Writable is good to add new files to the server or a “temporary backup folder”.

If I remember anything else, I will let you guys know.

Thanks,
Matheus

Just some small changes from default file, but to solve this problem took me sometime.

#======================= Global Settings =======================

[global]

guest account = nobody
## Browsing/Identification ###

# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup = WORKGROUP

# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)

# Windows Internet Name Serving Support Section:
# WINS Support – Tells the NMBD component of Samba to enable its WINS Server
# wins support = no

# WINS Server – Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z

# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no

# What naming service and in what order should we use to resolve host names
# to IP addresses
name resolve order = bcast host

#### Networking ####

# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
; interfaces = 127.0.0.0/8 eth0

# Only bind to the named interfaces and/or networks; you must use the
# ‘interfaces’ option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself. However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
; bind interfaces only = yes

#### Debugging/Accounting ####

# This tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m

# Cap the size of the individual log files (in KiB).
max log size = 1000

# If you want Samba to only log through syslog then set the following
# parameter to ‘yes’.
# syslog only = no

# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
syslog = 0

# Do something sensible when Samba crashes: mail the admin a backtrace
panic action = /usr/share/samba/panic-action %d

####### Authentication #######

# “security = user” is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html
# in the samba-doc package for details.
security = user

# You may wish to use password encryption. See the section on
# ‘encrypt passwords’ in the smb.conf(5) manpage before enabling.
encrypt passwords = true

# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.
passdb backend = tdbsam

obey pam restrictions = yes

# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
unix password sync = yes

# For Unix password sync to work on a Debian GNU/Linux system, the following
# parameters must be set (thanks to Ian Kahan < for
# sending the correct chat script for the passwd program in Debian Sarge).
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .

# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# ‘passwd program’. The default is ‘no’.
pam password change = yes

# This option controls how unsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user

########## Domains ###########

# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the ‘domain master’ setting to no
#
; domain logons = yes
#
# The following setting only takes effect if ‘domain logons’ is set
# It specifies the location of the user’s profile directory
# from the client point of view)
# The following required a [profiles] share to be setup on the
# samba server (see below)
; logon path = \\%N\profiles\%U
# Another common choice is storing the profile in the user’s home directory
# (this is Samba’s default)
# logon path = \\%N\%U\profile

# The following setting only takes effect if ‘domain logons’ is set
# It specifies the location of a user’s home directory (from the client
# point of view)
; logon drive = H:
# logon home = \\%N\%U

# The following setting only takes effect if ‘domain logons’ is set
# It specifies the script to run during logon. The script must be stored
# in the [netlogon] share
# NOTE: Must be store in ‘DOS’ file format convention
; logon script = logon.cmd

# This allows Unix users to be created on the domain controller via the SAMR
# RPC pipe. The example command creates a user account with a disabled Unix
# password; please adapt to your needs
; add user script = /usr/sbin/adduser –quiet –disabled-password –gecos “” %u

# This allows machine accounts to be created on the domain controller via the
# SAMR RPC pipe.
# The following assumes a “machines” group exists on the system
; add machine script = /usr/sbin/useradd -g machines -c “%u machine account” -d /var/lib/samba -s /bin/false %u

# This allows Unix groups to be created on the domain controller via the SAMR
# RPC pipe.
; add group script = /usr/sbin/addgroup –force-badname %g

########## Printing ##########

# If you want to automatically load your printer list rather
# than setting them up individually then you’ll need this
# load printers = yes

# lpr(ng) printing. You may wish to override the location of the
# printcap file
; printing = bsd
; printcap name = /etc/printcap

# CUPS printing. See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
; printing = cups
; printcap name = cups

############ Misc ############

# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
; include = /home/samba/etc/smb.conf.%m

# Most people will find that this option gives better performance.
# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html
# for details
# You may want to add the following on a Linux system:
# SO_RCVBUF=8192 SO_SNDBUF=8192
# socket options = TCP_NODELAY

# The following parameter is useful only if you have the linpopup package
# installed. The samba maintainer and the linpopup maintainer are
# working to ease installation and configuration of linpopup and samba.
; message command = /bin/sh -c ‘/usr/bin/linpopup “%f” “%m” %s; rm %s’ &

# Domain Master specifies Samba to be the Domain Master Browser. If this
# machine will be configured as a BDC (a secondary logon server), you
# must set this to ‘no’; otherwise, the default behavior is recommended.
# domain master = auto

# Some defaults for winbind (make sure you’re not using the ranges
# for something else.)
; idmap uid = 10000-20000
; idmap gid = 10000-20000
; template shell = /bin/bash

# The following was the default behaviour in sarge,
# but samba upstream reverted the default because it might induce
# performance issues in large organizations.
# See Debian bug #368251 for some of the consequences of *not*
# having this setting and smb.conf(5) for details.
; winbind enum groups = yes
; winbind enum users = yes

# Setup usershare options to enable non-root users to share folders
# with the net usershare command.

# Maximum number of usershare. 0 (default) means that usershare is disabled.
; usershare max shares = 100

# Allow users who’ve been granted usershare privileges to create
# public shares, not just authenticated ones
usershare allow guests = yes

#======================= Share Definitions =======================

# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user’s home director as \\server\username
;[homes]
; comment = Home Directories
; browseable = no

# By default, the home directories are exported read-only. Change the
# next parameter to ‘no’ if you want to be able to write to them.
; read only = yes

# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
; create mask = 0700

# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
; directory mask = 0700

# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only “username” can connect to \\server\username
# The following parameter makes sure that only “username” can connect
#
# This might need tweaking when using external authentication schemes
; valid users = %S

# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
;[netlogon]
; comment = Network Logon Service
; path = /home/samba/netlogon
; guest ok = yes
; read only = yes

# Un-comment the following and create the profiles directory to store
# users profiles (see the “logon path” option above)
# (you need to configure Samba to act as a domain controller too.)
# The path below should be writable by all users so that their
# profile directory may be created the first time they log on
;[profiles]
; comment = Users profiles
; path = /home/samba/profiles
; guest ok = no
; browseable = no
; create mask = 0600
; directory mask = 0700

#[printers]
# comment = All Printers
# browseable = no
# path = /var/spool/samba
# printable = yes
# guest ok = no
# read only = yes
# create mask = 0700

# Windows clients look for this share name as a source of downloadable
# printer drivers
#[print$]
# comment = Printer Drivers
# path = /var/lib/samba/printers
# browseable = yes
# read only = yes
# guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# You may need to replace ‘lpadmin’ with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
; write list = root, @lpadmin

# A sample share for sharing your CD-ROM with others.
;[cdrom]
; comment = Samba server’s CD-ROM
; read only = yes
; locking = no
; path = /cdrom
; guest ok = yes

# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don’t want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
; preexec = /bin/mount /cdrom
; postexec = /bin/umount /cdrom

[Compartilhados]
comment = “Shared Files”
browsable = yes
read only = yes
path = “/mnt/1tb/Compartilhados”
guest ok = yes
public = yes

[Writable]
comment = “Writable Folder”
browsable = yes
read only = no
path = “/mnt/1tb/Writable”
guest ok = yes
public = yes

Published inLinux

11,521 Comments

  1. Самара, всем привет Брат снова сорвался Родственники не знают что делать В больницу тащить страшно Короче, только это реально спасло — вывод из запоя на дому самара с гарантией Через пару часов человек пришёл в себя В общем, вся инфа по ссылке — вывод из запоя с выездом вывод из запоя с выездом Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

  2. Слушайте кто знает Отец не выходит из штопора Дети напуганы Таблетки не помогают Короче, врачи приехали и поставили систему — выведение из запоя на дому качественно Сняли ломку и стабилизировали состояние В общем, телефон и цены тут — запой на дому https://kodirovanie.vyvod-iz-zapoya-na-domu-samara.ru Вывод из запоя на дому — это реальный выход Перешлите тем кто в такой же ситуации

  3. Слушайте кто знает Ситуация критическая Дети напуганы Нужна срочная помощь на дому Короче, единственное что вытащило из запоя — вывод из запоя на дому нижний с гарантией Поставили капельницу с детоксикационным раствором В общем, телефон и цены тут — вывод из запоя на дому нижний новгород круглосуточно вывод из запоя на дому нижний новгород круглосуточно Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

  4. Suth aszian countriesPosst coiutal vagina imagesSouthesst asiann properties sikem reapNeww ford escoret
    zx2 manifoldBowden’s daughter nudeAdult bpok gueswt inutl
    tooy upskirtAmatrur pprn tapesEx ggf mirrror pussy picsOakvilpe eroticSuucks myy coick 4
    timesLesbin tribing pornNauto hentzi pormTitss floppping banging sexStrfech asss hhole gapingMy ffirst seex teachPolamd gayMidget stripersSely lqguna bewch latexFottze tgpCrosss
    dresser folot hose ale pantie transgenderAdult instawnt mesNude
    photos of elizabneth an hildenSmalll breasfs iin swimsuits picturesGirll
    innocently touches penisFaans breastsGirlfriend naked byy
    aterfall photosCum mastyrbating 2010 jelsoft enterprises
    ltdPuush dick’s buttonFuckked gjrl moviesTx nnails aand facialEnriqaue iglezias pornCranbnerries boobsCartoon netwok charactrrs nudeMidxdle aage porn starsFrench adult ‘teaseAsia argento nude videoPhotos of women in bikinisAgatha trannyHow to have sex with yourelfFucking throat 2008 jelsoft enterprises ltdWatch
    sunshine cruz sex videoVisit porn sets in laNaked dads fucking
    there sonTeen agers from outer spaceThumb rural health networkHunky teensWhat is average penis sizeTeen relationship abuse statisticsEnglewood fl adult strip bestBella donna pussy videoHillingdon uk escortsRussian voyeur
    picHow much will a pussy streachAnal gland cancer dogsX mature sex tubeSecret of tit fuckingItty bitty tit sexPics of
    gay absFree bimale sexWomen’s bikini bodyJeesica sierrda sexx tape
    free streamingMassiv clitforis tubeFrree sex clipls big bounhcing
    boobiesSeex inn the loungeCconut oil organic exta virginTeen abortion parental notificationMy teenage lesbiawn daughterVintage cedar
    barrelsWiscopnsin adult waterpark12th aasian benefit summitAdam baldwin seex sceneTop 10
    movike sex scennes askmenNudee yojng stuffFrree nude bbwsFemdxom clips moviesKatie moorre pornFreee xxxx cheerleader videosFormer tee mies
    ohoo titpe holdersBeatyiful asses frse moviesJerrk eaaach other off ofvd9wuapt6suph7mqwo

  5. Ребята у кого компания Обещают одно а по факту другое То логотип кривой Короче, реальное производство в Москве — бизнес подарки купить с примеркой Упаковка премиум класса В общем, смотрите сами по ссылке — бизнес подарки с нанесением логотипа бизнес подарки с нанесением логотипа Проверяйте производителя по этому списку Перешлите тому у кого бизнес

  6. Нижний Новгород, всем привет Ситуация критическая Соседи стучат в стену В больницу тащить страшно Короче, только это реально спасло — вывод из запоя нижний новгород с выездом Поставили капельницу с детоксикационным раствором В общем, не потеряйте контакты — помощь при запое на дому https://kapelnicza.vyvod-iz-zapoya-na-domu-nizhnij-novgorod.ru Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

  7. Слушайте кто знает Муж просто потерял себя Соседи стучат в стену Нужен врач прямо сейчас Короче, врач приехал и поставил систему — нарколог на дом с капельницей Через пару часов человек пришёл в себя В общем, вся инфа по ссылке — врач психиатр нарколог на дом врач психиатр нарколог на дом Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

  8. يعني بقالي كام شهر بشتغل على الموقع ده وحبيت أشارك اللي شفته بما إن الموضوع بيتكرر هنا. الحاجة اللي لفتت نظري إن المكتبة مرعب فعلًا — حوالي 8 آلاف لعبة بالتقريب، والمزودين محترمين. براجماتيك ليها نصيب الأسد ووطبعًا Play’n GO وNetEnt.

    أنا شخصيًا مدمن Gates of Olympus، وزميلي مش بيسيب Book of Dead. اللي جربته الفترة اللي فاتت كان ألعاب Big Time Gaming وعجبتني صراحة. إنما الحاجة الوحيدة المزعجة إن السيرش بيهنج أحيانًا لما تدور على لعبة بالاسم.

    قسم الـlive أحسن حاجة عندهم — إيفوليوشن هي اللي وراه، كروبيهات حقيقيين والجودة عالية حتى بالإنترنت بتاعنا هنا. Crazy Time تحديدًا إدمان بصراحة، وفيه طاولات عربي وده مريح. على فكرة في البونص بيكون منحة 100% على أول إيداع و شوية فري سبينز بتتوزع على أيام، والـwagering حوالي 35 مرة وأنا شايفه عادل نسبيًا. ممكن تراجع آخر العروض والأكواد من برنامج مراهنات 888starz قبل ما تسجل لأنهم بيحدثوها كتير.

    فتح الحساب أخد مني دقيقتين، وأقل إيداع في المتناول — مبلغ رمزي. الدفع بيدعم فيزا وماستركارد، محافظ إلكترونية، وبيتكوين وUSDT وأنا بفضلها صراحة. آخر سحب وصل في ساعتين بالـكريبتو، إنما بالكارت أخد يومين تلاتة.

    على الموبايل مفيش مشاكل — تنزيل التطبيق من الموقع الرسمي وده طبيعي في مواقع الرهان. 888starz تحديث بيتحدث لوحده والحمد لله. الدعم بيرد بسرعة بس ساعات بيردوا بإنجليزي الأول. الترخيص كوراساو وده مش أفضل ترخيص في الدنيا بس مقبول، فمتحمسش وتحط أكتر من قدرتك.

  9. Слушайте кто сталкивался Близкий человек уже несколько дней в запое Родственники не знают что делать В больницу тащить страшно Короче, единственный кто реально помог — помощь нарколога на дому эффективно Через пару часов человек пришёл в себя В общем, телефон и цены тут — врач нарколог на дом платный https://zapoj.narkolog-na-dom-nizhnij-novgorod-3.ru Нарколог на дом — это реальный выход Перешлите тем кто в такой же ситуации

  10. Слушайте кто хочет гражданство Израиля Вечно то справок не хватает Сроки горят, нервы на пределе Короче, реально толковые ребята — получение гражданство израиля в москве без нервов Собеседование прошло гладко В общем, смотрите сами по ссылке — помощь в получении гражданства израиля в москве помощь в получении гражданства израиля в москве Доверьтесь профессионалам Перешлите тому кто думает о репатриации

  11. MichaelAmedy MichaelAmedy

    Наркологическая клиника проводит вывод из запоя на дому, амбулаторно и в стационаре. Опытные врачи оценивают состояние пациента, длительность употребления спиртных напитков, количество алкоголя, возраст, пол, наличие хронических заболеваний, диабет, показатели давления, пульса, дыхания и поведения. Нарколог подбирает раствор, лекарства, витаминные комплексы, противосудорожные и успокаивающие средства, а также препараты, улучшающие работу печени, сердца, нервной системы и обмен клеток. Такой подход позволяет провести детокс организма под наблюдением и снизить последствия интоксикации этанола.
    Подробнее – https://vyvod-iz-zapoya-v-lyubercah14.ru/

  12. united kingdom big fish casino support page, Mickie, deposit
    free no spin, gambling laws canada and is casinos illegal in uk, or best gambling website united states

  13. Воронеж, всем привет Отец не выходит из штопора Дети напуганы Таблетки не помогают Короче, только это реально спасло — врач нарколог на дом с капельницей Приехал через 40 минут В общем, вся инфа по ссылке — номер нарколога на дом номер нарколога на дом Не ждите пока станет хуже Перешлите тем кто в такой же ситуации

  14. صراحة أنا بقالي حوالي أربع شهور بلعب على المنصة دي من الموبايل، وقررت أكتب تجربتي علشان ناس كتير هنا في مصر بتسأل عن موضوع تطبيق 888starz. أكتر حاجة حبيتها إن فيه كم ألعاب ضخم، قريب من أكتر من 2500 لعبة سلوتس تقريبًا، ومش كلها حشو زي بعض المواقع التانية.

    شركات الاستوديوهات ناس محترمين زي Pragmatic وPlay’n GO وBetsoft. أنا بلعب كتير على سويت بونانزا وجيتس أوف أوليمبوس، وأحيانًا بلف على Book of Dead. لو بتفضل اللعب الحقيقي فيه قسم الديلر المباشر من Evolution بكروبيهات حقيقيين، وشوز زي كريزي تايم ممتعة فعلًا.

    موضوع العرض الترحيبي محترم صراحة: أول إيداع بياخد بونص 100% زائد سبينات ببلاش، وفيه عرض بدون إيداع لو بتحب تجرب الأول. بس خليك واخد بالك من متطلبات الرهان اللي حوالي 40 ضعف — دي حاجة كتير بينسوها. لو عايز تشوف الأكواد الحالية روح لـ برنامج مراهنات 888starz علطول.

    اللي مريّحني إن فيه أكتر من وسيلة: Visa وMasterCard، وe-wallets، وكمان عملات رقمية زي البيتكوين. طلب الفلوس بياخد يوم لتلاتة على المحفظة، مش زي مواقع بتماطل أسبوع. التسجيل نفسه بياخد دقايق، والحد الأدنى للإيداع مش مبالغ فيه.

    عيب لازم أقوله إن خدمة العملاء بيتأخر في وقت الذروة، ومرة قعدت مستني رد. غير كده تنزيل التطبيق على الأندرويد محتاج تسمح بمصادر خارجية، مش صعبة بس تحتاج انتباه. 888starz apk شغال حلو على الموبايل وبيجيله تحديثات باستمرار.

    في العموم أنا كمّلت عليه أكتر مما توقعت، و888starz apk بقى أساسي على موبايلي. فيه ليسنس معلن على الموقع، وده بيدي طمأنينة وانت بتحط فلوسك. جربوه بنفسكم وقولولي رأيكم.

  15. Llevo unos cuantos meses en 888starz y la verdad entré con la mosca detrás de la oreja, porque por aquí te cansas de páginas que venden humo. Abrir la cuenta no me llevó ni tres minutos, correo y contraseña y ya está, y el depósito mínimo es de 1 euro, cosa que agradezco para tantear.

    En cuanto a máquinas tienen un catálogo enorme — hablamos de 8.000 juegos de proveedores como Pragmatic Play, NetEnt, Play’n GO, Betsoft y Yggdrasil. Yo tiro mucho de Book of Dead y Gates of Olympus, eso sí también le he dado a alguna de Microgaming. Lo que sí el filtro por proveedor a veces se atasca cuando el catálogo es tan bestia.

    La zona en vivo corre a cargo de Evolution y eso se nota: blackjack con gente real, los game shows tipo Crazy Time si te va el rollo espectáculo. El bono de bienvenida va sobre el 100% hasta 300€ con 150 giros, con un rollover de x40, que no es regalado pero tampoco un robo. Va rotando algún free spin sin depósito, yo miraría lo que hay vigente en 888starz demo account antes de meter dinero.

    El tema de sacar pasta es lo que más me ha sorprendido. Cobré el otro día vía e-wallet y lo tuve en 40 minutos. Con tarjeta se va a dos o tres días, nada nuevo. Tienen Neteller, Bitcoin si no te asusta el tema.

    En el teléfono va suave, hay APK para Android pero yo uso el navegador y me sobra. El soporte está en español, no fue instantáneo pero tampoco eterno cuando pregunté por el KYC. Licencia de Curazao, que no es la DGOJ y conviene tenerlo claro. A mí de momento me ha respondido, pero ojo con el rollover de las promos.

  16. Llevo casi medio ano en 888starz y para que mentir entre con la mosca detras de la oreja, porque por aqui uno se cansa de casinos que prometen mucho. El registro no me llevo ni un rato minimo, correo y contrasena y ya esta, y el deposito minimo ronda los 1-2 euros, cosa que agradezco para tantear.

    De tragaperras tienen un catalogo enorme — andan por 8.000 titulos repartidos entre Pragmatic Play, NetEnt, Play’n GO, Betsoft y Yggdrasil. Yo me quedo en Book of Dead y Gates of Olympus, si bien tambien le he dado a alguna de Microgaming. La pega es que encontrar un juego concreto es un lio cuando el catalogo es tan bestia.

    El casino en directo corre a cargo de Evolution y se nota la diferencia: blackjack con gente real, Crazy Time y Monopoly Live que enganchan una barbaridad. La oferta de entrada es de un 130% con 150 giros, con un rollover de unas 35 veces, que es lo normal del mercado. Tambien hay alguna promo sin deposito, conviene revisar los terminos actualizados en 888starz withdrawal problem porque cambian cada mes.

    Los cobros me ha ido mejor de lo que pensaba. Cobre el otro dia por Skrill y lo tuve en 40 minutos. Por Visa o Mastercard tarda mas, nada nuevo. Aceptan tambien Neteller, Bitcoin y USDT que es lo mas rapido con diferencia.

    En el telefono cumple, hay APK para Android si bien la version web hace el mismo apano. La atencion al cliente te contesta en castellano, me atendieron rapido con una duda de documentacion. Operan con licencia de Curazao, que no es la DGOJ y hay que saberlo antes de entrar. Yo sigo ahi, con sus cosas, aunque las promos hay que leerlas con lupa.

  17. Llevo como cinco meses con 888starz y para que mentir no esperaba gran cosa, porque aqui en Espana te cansas de paginas que venden humo. Darse de alta fue cosa de dos minutos, correo, contrasena y listo, y el deposito minimo esta en 1-2 euros, asi puedes tantear sin jugarte el sueldo.

    En cuanto a maquinas van sobrados — andan por 8.000 slots repartidos entre Pragmatic Play, NetEnt, Play’n GO, Betsoft y Yggdrasil. Yo me quedo en Sweet Bonanza y Book of Dead, eso si de vez en cuando pruebo cosas de Big Time Gaming. Lo que me raya es que encontrar un juego concreto es un lio cuando tienes 8.000 cosas delante.

    El casino en directo corre a cargo de Evolution y se nota la diferencia: mesas con crupier en espanol, Crazy Time y Monopoly Live para el que le guste el show. El bono de bienvenida ronda el 100% hasta 300€ y unas 150 giros, hay que apostarlo x35, que es lo normal del mercado. Va rotando alguna promo sin deposito, yo miraria los terminos actualizados desde 888starz bonus code antes de registrarte.

    Los cobros es lo que mas me ha sorprendido. Saque hace poco via e-wallet y lo tuve en 40 minutos. Con tarjeta tarda mas, eso ya es cosa del banco. Aceptan tambien Neteller, cripto que es lo mas rapido con diferencia.

    Desde el movil va suave, hay APK para Android pero yo uso el navegador y me sobra. La atencion al cliente responde en espanol, me atendieron rapido cuando pregunte por el KYC. La licencia es de Curazao, no esta regulado por la DGOJ espanola y conviene tenerlo claro. Yo sigo ahi, con sus cosas, y sin volverse loco con los bonos.

  18. OK — been using this thing for maybe four months now and I keep coming back, reckon I’d chuck my thoughts in since someone asked me the other day. I’m UK based, mainly do football and horses, nothing mad, for context.

    How I found it was actually pretty stupid — I could never get my head round what an e/w return would be with 1/5 odds a place. Basically I’d guess and then be surprised. Now punch the numbers in first, every time, even the boring singles.

    The single bet calculator is the part I open most — you drop in the price and your stake and it shows returns with no faffing, fractional or decimal, doesn’t matter. It also handles the fiddly ones — trebles maths, lucky 15s, patents and yankees, and that’s where I always got it wrong. If you want a look, it lives at single bet calculator free and there’s no login wall, which I appreciated.

    What genuinely changed how I bet is the nerdier extras. There’s an odds-to-probability thing which shows you what margin’s baked in, plus a kelly criterion tool — I stick to fractional kelly since full stakes are terrifying. Dutching calculator gets used a fair bit when I’m covering two or three runners.

    Not all sunshine though. Its layout is very functional, let’s say — no frills, it’s clearly function over form. Phone-wise it’s usable but the lucky 63 breakdown need a bit of scrolling. Also there’s no proper app, just the site — doesn’t bother me but you asked.

    Right, that’s me. Doesn’t cost anything, not plastered in adverts, works. If anyone even now adds it up in their head, give it a go — saves me plenty of arguments with the bookie.

  19. So — been on this thing for maybe five months now and I keep coming back, so figured I’d write something up since someone asked me last week. I’m UK based, mainly bet football and racing, a fiver here and there, just so you know where I’m coming from.

    The reason I started using it was honestly embarrassing — I couldn’t ever figure out what an e/w return would be with 1/5 odds a place. Basically I’d eyeball it and get a shock. Now type the odds in before I place anything, even a simple single bet.

    The single bet calculator tool is the one I use most — you drop in the price and your stake and it spits out returns instantly, either odds format. There’s also the multiples — trebles maths, lucky 15 and lucky 63, patents and yankees, which is where most people I know mess it up. Have a go yourself, it lives at lay dutching calculator and there’s no login wall, which I appreciated.

    One thing that actually changed how I bet is the geekier bits. The probability calculator that shows the overround, and a kelly criterion calculator — I stick to fractional kelly because full kelly is terrifying. Dutching calculator gets used a fair bit for when I’m splitting a race.

    Couple of gripes. Its design feels pretty plain — zero flash, which honestly I don’t mind but some will. On mobile it’s usable although the acca grid make you pinch and zoom. Also there’s no proper app, just the site — fine by me just flagging it.

    Right, that’s me. Free, not plastered in adverts, does what it says. If anyone even now adds it up in their head, give it a go — saves me a fair few “wait, that’s it?” moments.

  20. Vengo jugando unos cuantos meses en 888starz y sinceramente no esperaba gran cosa, ya que en Espana te cansas de casinos que prometen mucho. Abrir la cuenta no me llevo ni un rato minimo, correo, contrasena y listo, y el minimo para depositar es de unos pocos euros, asi puedes tantear sin jugarte el sueldo.

    De tragaperras tienen un catalogo enorme — creo que pasan de 8.000 juegos entre Pragmatic Play, NetEnt, Play’n GO, Betsoft y Yggdrasil. Mis habituales son Book of Dead y Gates of Olympus, eso si de vez en cuando pruebo cosas de Big Time Gaming. Lo que si encontrar un juego concreto es un lio cuando tienes 8.000 cosas delante.

    La zona en vivo esta llevada por Evolution y ahi no hay queja: blackjack con gente real, Crazy Time para el que le guste el show. La oferta de entrada ronda el 100% y unas 100 tiradas gratis, con un rollover de unas 35 veces, que no es regalado pero tampoco un robo. Suele haber bonos sin deposito de vez en cuando, yo miraria lo que hay vigente desde 888starz promo porque cambian cada mes.

    Los cobros me ha ido mejor de lo que pensaba. Retire hace poco por Skrill y entro casi al momento. Por Visa o Mastercard se va a dos o tres dias, eso ya es cosa del banco. Van con Neteller, Bitcoin si no te asusta el tema.

    El movil funciona bien, tienen app para Android aunque la web movil me va igual de bien. El soporte esta en espanol, no fue instantaneo pero tampoco eterno cuando pregunte por el KYC. Licencia de Curazao, asi que no es un.es regulado y conviene tenerlo claro. Por ahora no me ha fallado, pero ojo con el rollover de las promos.

Leave a Reply

Your email address will not be published. Required fields are marked *