kalvn's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 85 / 189
How can I recover data from my DiskStation using a PC? | Synology Inc. https://www.synology.com/en-us/knowledgebase/DSM/tutorial/Storage/How_can_I_recover_data_from_my_DiskStation_using_a_PC
22/01/2019 13:22:26

Sous le coude.

In the unfortunate event your DiskStation fails, you'll probably want to recover the data stored on its hard drives. Data stored on the DiskStation's hard drives can be easily recovered using an Ubuntu live CD and your computer. Please see the steps below.

Prepare a PC with enough hard drive slots available to install the hard drives from your DiskStation.

Remove the hard drives from your DiskStation and connect them to your computer. For RAID or SHR configurations, you'll have to connect all the hard drives (excluding hard drives used as hot spares) to your computer at the same time.

Note: Please make sure the file system running on the hard drives of your Synology NAS are EXT4 or Btrfs.

Visit http://www.ubuntu.com/download/desktop to download the Ubuntu ISO file.

Burn the ISO on a blank DVD and use it to boot your computer.

Install Ubuntu on an empty hard drive or USB stick.

If you're recovering files from a RAID or SHR configuration, please see steps 7 to 11. For recovering files from basic storage types with only one hard drive, please skip to step 12.

Go to Applications and open Terminal.

Install mdadm with the following commands.

Ubuntu@ubuntu:~$ sudo -i

root@ubuntu:~$ apt-get install mdadm

Select No configuration and complete the installation.

Install lvm2 with the following commands.

root@ubuntu:~$ apt-get install lvm2 (otherwise vgchange won't work)

Run the following command to mount all of the hard drives from your DiskStation.

root@ubuntu:~$ mdadm -Asf && vgchange -ay

Now you'll be able to browse all the shares and files on the hard drives. You may also connect a USB drive to the PC, copy required files to the USB drive, and then transfer the files to other devices.

synology nas recovery backup erreur
Quelques nouvelles astuces à exploiter sur Firefox – Le blog de Seboss666 https://blog.seboss666.info/2019/01/quelques-nouvelles-astuces-a-exploiter-sur-firefox/
21/01/2019 13:38:13

Des petites astuces pour Firefox.

firefox astuce
VueDose https://vuedose.tips/tips/1/
21/01/2019 11:19:27

Améliorer les performances des grosses listes dans Vue.js en supprimant la couche réactive de chaque menu item lorsque c'est possible. C'est vrai que bien souvent les éléments d'une liste n'évoluent pas donc la réactivité n'apporte rien.

vuejs optimisation performances
Canon Pixma TS6150 : test, prix et fiche technique - Imprimante - Les Numériques https://www.lesnumeriques.com/imprimante/canon-pixma-ts6150-p43211/test.html
20/01/2019 21:52:32

Via https://sebsauvage.net/links/?97QBVg

imprimante test
GameHub https://tkashkin.tk/projects/gamehub/
20/01/2019 21:25:32

Un soft regroupant tous vos jeux sous Linux.

Via https://korben.info/gamehub-un-soft-sous-linux-pour-unifier-votre-bibliotheque-de-jeux.html

steam jeux-vidéos app linux
Most simple way to be a Wi-Fi Password Hacker using Kali Linux (Tutorial) https://dopehacker.com/wifi-password-hacker/
18/01/2019 21:21:37
wifi hacking
HTTP Toolkit | Intercept, debug & build with HTTP https://httptoolkit.tech/
18/01/2019 21:16:16

Pas testé mais ça peut servir.

http proxy debug dev
server - How do I free up disk space? - Ask Ubuntu https://askubuntu.com/questions/5980/how-do-i-free-up-disk-space
18/01/2019 21:07:11

Libérer un peu d'espace disque sur un serveur Ubuntu.

# To delete downloaded packages (.deb) already installed (and no longer needed)
$ sudo apt-get clean

# To remove all stored archives in your cache for packages that can not be downloaded anymore (thus packages that are no longer in the repository or that have a newer version in the repository).
$ sudo apt-get autoclean

# To remove unnecessary packages (After uninstalling an app there could be packages you don't need anymore), including old Linux kernels (only if Ubuntu > 16.04)
$ sudo apt-get autoremove
disque ubuntu
Note: Trouver quels fichiers prennent le plus d'espace disque sur un serveur Ubuntu /shaare/St6-dA
18/01/2019 20:53:06
$ cd /
$ sudo du -a | sort -nr | head

Vous pouvez après vous déplacer dans chaque dossier et exécuter la même commande pour avoir plus de détails.

disque espace ubuntu serveur
Update Certbot On Ubuntu | Lua Software Code https://code.luasoftware.com/tutorials/lets-encrypt/update-certbot-on-ubuntu/
18/01/2019 20:43:30

Pour mettre à jour Let's Encrypt Certbot sur Ubuntu :

$ certbot --version
$ sudo apt-get dist-upgrade
$ certbot --version

sudo apt-get upgrade is not sufficient due to some package name change

letsencrypt update
Comment bloquer la mise à jour des drivers sous Windows 10 ? – Korben https://korben.info/comment-bloquer-la-mise-a-jour-des-drivers-sous-windows-10.html
18/01/2019 19:01:32

Sous le coude.

windows update driver
HD Wallpapers | Ultra HD 4K Wallpapers for Desktop & Mobiles https://www.hdwallpapers.in/
18/01/2019 15:22:41

Un site de fonds d'écran HD.

wallpaper
Home - Document https://matvp91.github.io/indigo-player/#/
18/01/2019 15:19:48

Un lecteur vidéo JavaScript.

JavaScript video player lib
Seven Reasons to learn Vue.js in 2019 – Vue Curious – Medium https://medium.com/vue-curious/seven-reasons-to-learn-vue-js-in-2019-fd38c98a4a63
17/01/2019 10:11:41

Now is a good time to start leaning Vue.js :)

vuejs
2018 JavaScript Rising Stars https://risingstars.js.org/2018/en/
15/01/2019 17:30:41

Vue.js est le projet obtenant la meilleure progression en matière d'étoile sur Github depuis 3 années consécutives !

vuejs framework JavaScript github
RSS-Bridge https://sebsauvage.net/rss-bridge/
15/01/2019 16:07:14

Une nouvelle instance de RSS-Bridge.

rss rss-bridge
Internet fixe : comment changer d'opérateur ADSL ou Fibre ? - FrAndroid https://www.frandroid.com/telecom/559947_internet-fixe-comment-changer-doperateur-adsl-ou-fibre
15/01/2019 15:56:17

Bon l'article est sponsorisé par SFR mais dans l'ensemble il contient quand même pas mal d'infos utiles.

operateur internet
A Beginner’s Guide to GraphQL - DEV Community 👩‍💻👨‍💻 https://dev.to/leonardomso/a-beginners-guide-to-graphql-3kjj
15/01/2019 11:16:21
graphql tuto
How To Improve UX of Web Forms https://maxsnitser.com/blog/how-to-improve-ux-of-web-forms
14/01/2019 10:19:32

Pas mal de bons conseils pour améliorer l'expérience utilisateurs sur vos formulaires.

form ux astuce
JustWatch - Nouveautés films et séries disponibles en VOD https://www.justwatch.com/fr/nouveau
14/01/2019 09:39:33

Un site qui permet de lister les ajouts de films et de séries récents sur les principales plateformes de streaming légales. Il y a aussi une section Populaires.

Parfait pour trouver de nouvelles choses à voir.

cinéma netflix streaming youtube actualité
page 85 / 189
3901 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn