Vincent Faliès - Artisan Codeur

Mount shared Samba directories on Ubuntu

ubuntu samba
Reading time: 1 minute, 0 seconds

Prerequisite

You must install the followwing package:

apt-get install smbclient
apt-get install cifs-utils

From console

mount -t cifs //server_ip_address/shared_name /mount_path --verbose -o user=user_samba,password=password_samba

To mount automaticaly this directory at the startup, you mu...

Continue reading...

Fix Flutter Android licenses exception

Development flutter android mobile exception
Reading time: 1 minute, 0 seconds

During Flutter installation, you must control your configuration with the command:

$ flutter doctor

I the report generated, you will accept the Android licenses with the command :

$ flutter doctor --android-licenses

But the output can be something like :

Exception in thread "main" java.lan...

Continue reading...

When you work on Raspberry Pi with a storage like a Micro SD card, a lot of writings can be created on logs. To limit this effect and increase the life time of your storage, you can use Log2Ram.

As most of the data written as a gateway are the Linux log files, there is a solution to reduce the n...

Continue reading...

Can not login Docker account

docker
Reading time: 1 minute, 0 seconds

With some Docker installation, when you want to log to your Docker accoutn with command docker login in a terminal, you could have the following error message:

Error saving credentials: error storing credentials - err: exec: "docker-credential-secretservice": executable file not found in $PATH,...

Continue reading...

TMDb v1.9

php web project TMDb movies tv wrapper api
Reading time: 1 minute, 0 seconds

A new version of wrapper for TMDb API is now available in 1.9 version.

Added

  • Add find feature to find a movie / people / tv shows / tv episodes / tv seasons from external ID (IMDb, TVDb, TVRage, Faceboo, Twitter, Instagram)
  • Add all documentations in README.md

Changed

  • Replace depre...

Continue reading...