NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

TVS-EC1080
https://www.qnap.com/en-us/app_center/?II=184
https://www.qnap.com/en-us/download?model=tvs-ec1080%2B&category=firmware

rclone qnap
https://www.qnap.com/en/release-notes/kernel
TVS-EC1080 linux kernel 4.14.24
https://www.qnap.com/en/release-notes/qts/4.3.6.1070/20190919?ref=nas_product
https://www.qnap.com/en/release-notes/qts/4.4.1.1261/20200330


QTS 4.4.1.1216 build 20200214
- Multimedia Console is no longer a built-in QTS application.


QTS 4.4.2.1270 build 20200410
QTS
- To ensure system security, the default password of the "admin" account is now the first MAC address without special characters. All letters should be uppercase. For example, if the MAC address is AA:BB:CC:11:22:33, the default password will be AABBCC112233. You can check the MAC address via Qfinder Pro or from the sticker on the device.

Storage & Snapshots
- Instead of "REXP", QTS now uses "EXDR" as the abbreviation for external storage devices.


QTS 4.4.3.1354 build 20200702
[Enhancements]
QTS
- To enhance NAS security, Malware Remover is now automatically installed for QTS.
- Users can now send usage data from Notification Center to QNAP to help optimize product design and enhance user experience.
- Redesigned the user interface of Qsync Central to enhance user experience.

QTS 4.4.3.1444 build 20200930
yukardakiler razi isen bu sonuncuyu yukle

https://www.qnap.com/en/release-notes/qts/4.3.6.1070/20190919?ref=nas_product
https://web.archive.org/web/20120125062458/http://scratchpad.wikia.com/wiki/Open_Turbostation:TS101#mtdblock4
https://web.archive.org/web/20120225160513/http://tech.groups.yahoo.com/group/OpenTurbostation/message/793
http://127.0.0.1/istat/index.php
https://forum.qnap.com/viewforum.php?f=209
https://www.truenas.com/docs/hub/



Midnight Commander *(anlatim obsolte ipkg icin mine opkg )
If you have upgraded busybox, installing MC will fail due to Busybox 1.0 providing clear and reset, two commands also provided by ncurses (a dependency of mc). There is a workaround at Wget
Configure the terminal.
Edit or create /etc/profile to set up your terminal settings. NOTE - the file does not exist by default. Add these lines to the file:

export TERMINFO=/opt/share/terminfo
export TERM=xterm-pcolor
Explore the /opt/share/terminfo directory to try other terminal configurations.
Note:
The first export line should be /opt/lib/terminfo instead of /opt/share/terminfo. If MC is unresponsive at startup and terminates with a memory exhausted message upon keypress, you may need to
chmod 640 /etc/profile
If you get the following error...
"mc: error while loading shared libraries: libext2fs.so.2: cannot open shared object file: No such file or directory" ... you should install e2fsprogs
ipkg install e2fsprogs
Troubleshooting:
Some keyboard keys might not work initially. These can be retrained by using the Options->"Learn Keys" menu.
If your function keys are not working, either use the mouse to do this, or use <ESC><ESC><NUMBER> to emulate them. For example, to retrain the keys, press <ESC><ESC><9>, select "OPTIONS", and then "LEARN KEYS".

If you don't have F keys, use Esc - number sequence (1-0) instead.
F10 key in Gnome Terminal: opens the main terminal File menu instead, so click quit with mouse.
Switch back and forth to the console with Ctrl–o while keeping mc running. (also called hiding panels or subshell support
select multiple files with the insert key
Mac users without an Insert Key: Use Ctrl-t instead.
Tab key also moves sequentially through fields of selection boxes
In mc's keyboard shortcut notation, 'C-x i' would mean press Ctrl and x simultaneously, release both then press i. M refers to the Alt key. A few common shortcuts:

Ctrl R - refresh or rescan directory view
Alt-shift ? - find file
Ctrl-x d - compare directories (release ctrl-x before pressing d)
Ctrl - open directory hotlist
Ctrl-x c (o,s,l) - chmod, chown, symlink, link
Alt c - quick cd (opens a box, quicker to type than arrowing through if you know its full path)
(Shift) + - select group. Can enter wildcards to highlight a certain type or name of file.
(Shift) * - reverse selection. Changes highlighting to all unselected files. Handy to use these two in combination if you are trying to quickly select all but a certain group.
- unselect group. Opposite of +.
Mouse support: not possible in Terminal.app, so run it on iTerm http://www.iterm2.com/#/section/home

The F key problem: Easiest fix for regular users - open System Preferences -> Keyboard, tick to use the F keys as normal function keys. Otherwise, use Ctrl-t in place of the insert key to select multiple files, and Esc - 1-0 in place of the F keys.
Access the network and external drives from 'volumes' in the root directory.

Cannot launch Midnight Commander
I get following error:
/share/MD0_DATA/.qpkg/Optware/bin/mc: can't load library 'libintl.so.8'
Looks like mc is missing gettext dependency. Fixed, it's being rebuilt now. Wait till feeds are updated, or just install gettext manually:
ipkg install gettext
I now got gettext installed with -force-overwrite, rebooted and now Midnight Commander is working. Thanks
http://www.trembath.co.za/mctutorial.html



* Sometimes it can happen that mc will not run. Instead of GUI you will see some error saying "aborted". This bug has appeared after one update of Turris sw.

In this case you have to delete history file in mc directory. Log out from Turris > log in > do not run mc yet > type "rm /etc/mc/history" > now you can run mc again

https://www.webmin.com/
https://ridwankhan.com/building-an-open-media-vault-nas-part-2-choosing-and-installing-omv-301ac4ed333e
https://ridwankhan.com/building-an-open-media-vault-nas-part-3-configuring-omv-ee15322602be
vimcheat sheets
https://gist.github.com/glnds/11027696

https://www.pixxis.be/2014/04/29/install_python_pip_on_qnap_nas/
https://devconnected.com/category/linux-administration/

On Ubuntu 20.04, we will focus on three different ways to add a user as sudo : add it to the sudo group, to the sudoers file or using the graphical interface.
which sudo # the “which” command can be used in order to verify the existence of the sudo command on your host.
$ apt-get update
$ apt-get install sudo
In order to add a user to sudoers, you have to use the “usermod” command and the capital G (for secondary groups).
$ sudo usermod -a -G sudo <user>
sudo usermod -a -G sudo safak
$ groups # In order to verify that your user was correctly added to the sudo group, you have to use the “groups” command.
If you see “sudo” as a secondary group for your user, congratulations, you successfully added your user to sudoers!

Adding a user to sudoers using gpasswd
A less popular, yet very powerful way to add a user to sudoers is to use the gpasswd command.

$ Adding a user to sudoers using gpasswd
A less popular, yet very powerful way to add a user to sudoers is to use the gpasswd command.

$ sudo gpasswd -a <user> sudo
Adding a user to sudoers using gpasswd
A less popular, yet very powerful way to add a user to sudoers is to use the gpasswd command.

$ sudo gpasswd -a safak sudo
gpasswd is used in order to administer the “/etc/group” file on your filesystem.


Adding an existing user to the sudoers file
By default, on Ubuntu 20.04, the sudoers file is located at /etc/sudoers.
$ cat /etc/sudoers
$ sudo visudo
At the end of the file, add a new line for the user.
safak ALL=(ALL:ALL) ALL
safak = user name
first ALL = host
second ALL = all users
Third ALL = all group
Last All (nopasswd:ALL) = all command
By saving and exiting the file, the user “john” will be automatically added to the sudo group.
By default, the account password will be asked every five minutes in order to perform sudo operations.

If you want to remove the password verification, you can simply add the “NOPASSWD” option.
safak ALL=(ALL:ALL) NOPASSWD:ALL
Note : if you add a user to the sudoers file, it does not mean that the user will belong to the sudo group on the system. It will be authorized to perform sudo operations, but it won’t be listed if you use the “groups” command.

if you want to tweak the password verification period
you have to modify the “timestamp_timeout” parameter.

# /etc/sudoers
# This file MUST be edited with the 'visudo' command as root.
# See the man page for details on how to write a sudoers file.
Defaults env_reset
Defaults mail_badpass
Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin
Defaults timestamp_timeout=30
# In this case, the password will be asked every thirty minutes.

Adding a group to the sudoers file

To add a group to the sudoers file, add a “percent” symbol at the beginning of the line, just before the name of the group.

%sysadmins ALL=(ALL:ALL) NOPASSWD:ALL
Next, make sure that you are part of the designed group and execute your command using “sudo”.
$ groups
user sysadmins
$ sudo passwd
Congratulations, you set “sudo” privileges to an entire group!


https://devconnected.com/30-linux-permissions-exercises-for-sysadmins/

Entware developers are happy to announce Entware-ng and Entware-3x merge. The new project is called Entware.
Entware will have all package repositories from Entware-3x (armv5, armv7, aarch64, mips, mipsel, x64) and
a repo for armv7 (Linux kernel 2.6.36) from Entware-ng. All other repositories will be available for installation but will not be
updated.

We have updated the toolchain in Entware. We use GCC 8.4.0 to build binaries and glibc 2.27 as a system library
(glibc 2.23 is used for kernel 2.6.36 - it is glibс limitation).

Current armv7 architecture users running Entware-ng, or any user currently running Entware-3x, can switch to Entware by running
`opkg update; opkg upgrade` twice.
The first upgrade changes repo URL in opkg.conf file, the second run updates the packages.

Entware standard installation is similar to Entware-ng. It does not install Entware version of busybox.
There is also alternative installer in Entware that is similar to Entware-3x installer.
It installs Entware version of busybox. For this installation Entware users are independent from firmware users.
Entware has root user with 12345 password. Other users can be added permanently to Entware in this case
to run services that require such users.

Currently different Entware versions are widely used in routers, NASes,
Android devices and other hardware that uses Linux kernel.

Entware team is ready to add other repositories for different embedded devices running Linux kernel higher or equal
than 2.6.36. Please give us your device name, output of `uname -a` command and other useful information.

https://oldwiki.archive.openwrt.org/doc/techref/opkg
https://onezeronull.com/2012/05/23/installing-optware-ipkg-on-qnap-ts-210/
https://onezeronull.com/2019/01/09/install-optware-ipkg-on-qnap-ts-210-with-qts-4-x/
https://wiki.qnap.com/wiki/Install_Optware_IPKG
https://github.com/Entware/Entware/wiki
https://forum.qnap.com/viewtopic.php?f=351&t=139781


https://en.wikipedia.org/wiki/Extensible_Authentication_Protocol#EAP-TTLS
https://www.juniper.net/documentation/software/aaa_802/sbrc/sbrc70/sw-sbrc-admin/html/EAP-024.html

https://asciinema.org/a/17485
https://github.com/Entware/Entware/wiki/Using-Tmux
curl wttr.in
https://www.minetest.net/downloads/

https://forum.qnap.com/viewtopic.php?f=320&t=151315
https://forum.qnap.com/viewtopic.php?f=320&t=126244

https://maker-tutorials.com/eigene-streaming-seite-wie-netflix-mit-streama-und-einem-raspberry-pi-3/#streama-einstellungen-und-themoviedb-api-key-einrichten
https://troypoint.com/best-apks/
https://troypoint.com/free-online-movie-streaming-sites/

always free video sites
https://tubitv.com/
https://gostream.site/
https://azm.to/
https://noxx.to/tv/the-witcher/1/6
https://www1.solarmovies.co/
http://123moviesgo.ga/
http://streamm4u.com/
https://www.imdb.com/tv/ usaonly
https://moviestars.to
https://www.peacocktv.com/ usa
https://www.crackle.com/ usa
https://www.popcornflix.com/ mostly usa
https://help.kanopy.com/hc/en-us kutuphaneuyesi yaada ogrenci gerekli
https://www1.moviesjoy.net/
https://yesmovies.ag/movie/
https://spacemov.top/
https://troypoint.com/supercharge-kodi/
https://www.vudu.com/
https://filmrise.com/
http://www.streamlord.com/
https://www.yidio.com/

Best Public Domain Movies
1. Night of the Living Dead (1968)

2. It’s a Wonderful Life (1946)

3. The Hunchback of Notre Dame (1923)

4. The Phantom of the Opera (1925)

5. McLintock! (1963)

6. The Last Man on Earth (1964)

7. Charade (1963)

8. The Outlaw (1943)

9. Santa Claus Conquers the Martians (1964)

10. The Gold Rush (1925)
https://troypoint.com/rapid-app-installer/ virus check need
https://troypoint.com/tpapp virus check need
https://troypoint.com/app
https://troypoint.com/kodistable
https://troypoint.com/jailbreak
https://troypoint.com/supercharge-kodi/
https://troypoint.com/watch-tv-shows-online-free/

tr yasakli ama indir
https://www.youtube.com/watch?v=zKQGAv8gtBA
https://www.youtube.com/watch?v=mkzgo1mj4Pg
https://www.youtube.com/watch?v=Pu3GxJS9phc
https://www.youtube.com/watch?v=2PaAbmRJ9bQ
https://www.youtube.com/watch?v=u0oFZ8LAFkk
https://www.youtube.com/watch?v=hi9B0u5ypJ4
https://www.youtube.com/watch?v=pcIuVT3X_UI
https://www.youtube.com/watch?v=NxQiom_qkJA
https://www.youtube.com/watch?v=jAsgMpwX5uk
https://www.youtube.com/watch?v=ACkYOLf-wHI
https://www.youtube.com/watch?v=H91BxkBXttE

free ip tvs
Pluto, Peacock, tubi, Sony Crackle, Prime Video, Vudu, Live Channel, and YouTube are all free and legal, and can be used with your Plex.
Strix APK on Firestick, Fire TV, and Android TV Box https://liveloungeapk.vip/strix-apk/
Enter the below Access code once you download Strix APK application
ACCESS CODE – 229156
You can also use the Silk Browser or Puffin TV to stream Airy TV through a web browser instead of an application.

https://flixtor.to/home
Pluto tv http://pluto.tv/ http://pluto.tv/live-tv/channel-lineup
Mobdro https://www.mobdro.bz/
LiveNet TV https://www.livenettv.sc/ https://www.livenettv.bz/
Redbox TV is a quality free Live TV streaming application that provides thousands of channels https://www.redboxtv.to/
XUMO TV App on Firestick, Fire TV, Roku, and More https://corp.xumo.com/
Kraken TV APK on Firestick, Fire TV, and Android Devices https://kraken-tv.en.uptodown.com/android
Peacock TV App on Firestick/Fire TV, Android, Roku https://www.peacocktv.com/
Airy TV App on Firestick/Fire TV, Android, and iPhone https://live.airy.tv/Movies/3_Movie_Channel_1
https://www1.swatchseries.to/
https://oreo-tv.com/
https://www.vuit.com/
https://www.plex.tv/
https://ustvgo.tv/

Best APKs
Cinema APK With real-debrid and trakt.tv integration https://real-debrid.com/ https://trakt.tv/ https://cinemahdapkapp.com/download/
kodi
Stremio
TeaTV
Viva TV
CatMouse APK
Nova TV
CyberFlix TV
Strix APK
ZiniTevi
Typhoon TV
Media Lounge APK
UnlockMyTTV
FilmPlus
BeeTV
Sofa TV
Megabox HD
HD Movie Box APK







torrent sites
https://thepirate-bay.org/home36
https://katcr.to/
https://zooqle.com/
https://torrents.io/
http://1337x.to/
https://eztv.ag/
https://www.limetorrents.cc/
https://torrentz2.is/
https://www.torlock.com/
https://idope.se/
https://www.torrentdownloads.me/
https://www.gtdb.to/home.php
https://torrentgalaxy.to/
https://rarbgenter.org/torrents.php?r=98356315
https://extratorrent.ag/
https://www.torrentfunk.com/
https://www.skytorrents.to/
Best Torrent Sites – Private
https://iptorrents.com/signup.php https://iptorrents.com/login.php
https://passthepopcorn.me/
https://broadcasthe.net/
https://redacted.ch/
https://bibliotik.me/
https://gazellegames.net/login.php

Best Kodi Builds
Build Name Build URL Build Size Build Compatibility
Xanax http://xanaxrepo.com/repo/ 266 MB Kodi 18 & 17.6
No Limits Magic https://tinyurl.com/nolimitswiz 173-285 MB Kodi 18 & 17.6
Titanium http://repo.supremebuilds.com/ 179 MB Kodi 18 & 17.6
MisFit Mods Lite http://misfitmods.com/mmwiz/repo/ 143 MB Kodi 18
Blue Magic http://luxurywizard.space/luxury/ 260 MB Kodi 18 & 17.6
Streamline http://whizkid.one/wizard 219 MB Kodi 18 & 17.6
Grindhouse http://grindhousekodi.tk/repo 80-250 MB Kodi 18 & 17.6
Diggz Xenon http://diggzrepo.ddns.net 200-300 MB Kodi 18 & 17.6
Grind http://watupwatup.net/grind 198 MB Kodi 18 & 17.6
The Beast https://thebeastbuild.com/download 200-300 MB Kodi 18
Kryptikz http://tinyurl.com/lostkodi 125 MB Kodi 18
BMC http://tinyurl.com/bmcrepo1 200-300 MB Kodi 18 & 17.6
Resident Evil http://racooncity.gq/repo 200-300 MB Kodi 18
Planetarium http://racooncity.gq/repo 200-300 MB Kodi 18
Plutonium http://ezzer-mac.com/repo 100-200MB Kodi 18
Last Kingdom https://pedrokingdom.com/repo 200-300MB Kodi 18
BK Nox http://streamdigital.org/wiz/ 200-300MB Kodi 18
Joker Builds http://insanity-builds.tk/fracturedrepo 200-300 MB Kodi 18
Slamious http://slamiousbuilds.com/repo 100-200MB Kodi 18
Franks https://team-crew.github.io 200-300MB Kodi 18
Madflix https://team-crew.github.io 200-300MB Kodi 18
Dominus https://cellardoortv.com/repo 100-200MB Kodi 18
Infusion https://cellardoortv.com/repo 200-300MB Kodi 18
Silvo http://multibuild.info/mbwiz 200-300MB Kodi 18
Mach Lite http://tinyurl.com/lostkodi 100-200MB Kodi 18
The Blaze http://blazinstreams.com/wiz 100-200MB Kodi 18
Hard Nox http://misfitmods.com/mmwiz/repo/ 100-200MB Kodi 18
No Bad Dayz http://ezzer-mac.com/repo 100-200MB Kodi 18
Underverse http://tinyurl.com/lostkodi 100-200MB Kodi 18
Nefarious http://tinyurl.com/lostkodi 100-200MB Kodi 18
CellarDoorTV https://cellardoortv.com/repo 100-200MB Kodi 18
cMaN Build http://narcacist.com/repo 100-200MB Kodi 18
Green Monster http://narcacist.com/repo 200-300MB Kodi 18
Movie Time http://narcacist.com/repo 100-200MB Kodi 18
NotFlix http://ezzer-mac.com/sgwizard 100-200MB Kodi 18
Aspire https://doomzdayteam.github.io/doomzday/ 200-300MB Kodi 18
USA Build https://doomzdayteam.github.io/doomzday/ 200-300MB Kodi 18
Spaced Out http://grindhousekodi.tk/repo 200-300MB Kodi 18
Fire & Ice https://myatom.one/AbsolutionBuilds 100-200MB Kodi 18
Chains https://myatom.one/AbsolutionBuilds 100MB Kodi 18
Decades http://grindhousekodi.tk/repo 100-200MB Kodi 18
Cityscapes http://grindhousekodi.tk/repo 100-200MB Kodi 18
Movies Buffed
http://famdamnlyman.one/ghetto/ghettorepo 200-300MB Kodi 18
Twisted Kodi Builds http://twistedbuilds.xyz/repo 200-300MB Kodi 18
Duffman Reloaded http://streamdigital.org/wiz/ 200-300MB Kodi 18

https://troypoint.com/best-kodi-addons/


     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.