TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

TeamSpeak 3 continues the legacy of the original TeamSpeak communication system previously offered in TeamSpeak Classic (1.5) and TeamSpeak 2. TeamSpeak 3 is not merely an extension of its predecessors but rather a complete rewrite in C++ of its proprietary protocol and core technology.

Moderator: Lillian.W@AST

User avatar
clinton.hall
Posts: 845
youtube meble na wymiar Warszawa
Joined: Thu May 09, 2013 7:01 pm
Location: New Zealand
Contact:

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by clinton.hall »

It looks like in their attempts to prevent multiple versions running, they have forced it to either need root privileges (not safe) or to specifically require temp memory in a specific location (just annoying)...

I'll try and have a look soon, but I have a lot going on right now.
AS-604T
3 x ST4000DM0000 (Seagate 4TB) in Raid5
2 GB RAM expansion
AS-302T

Apps (user)
NZBGet - CouchPotato - SickBeard - Git - Python

Apps (maintainer):
NZBGet - BitTorrent Sync - Mylar - LazyLibrarian - Gamez
-Maintenance of Apps acquired from JohhnyFive since ADM2.0:
SABnzbd - CouchPotato - SickBeard - HeadPhones - Subsonic

About Me: http://fockwulf.wix.com/index
User avatar
clinton.hall
Posts: 845
Joined: Thu May 09, 2013 7:01 pm
Location: New Zealand
Contact:

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by clinton.hall »

Can you show the output of
ls -l /dev/shm
cd dev/shm
ls
AS-604T
3 x ST4000DM0000 (Seagate 4TB) in Raid5
2 GB RAM expansion
AS-302T

Apps (user)
NZBGet - CouchPotato - SickBeard - Git - Python

Apps (maintainer):
NZBGet - BitTorrent Sync - Mylar - LazyLibrarian - Gamez
-Maintenance of Apps acquired from JohhnyFive since ADM2.0:
SABnzbd - CouchPotato - SickBeard - HeadPhones - Subsonic

About Me: http://fockwulf.wix.com/index
marped01
Posts: 22
Joined: Thu Jun 19, 2014 10:55 pm

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by marped01 »

Code: Select all

root@Asustor:/volume1/.@root # ls -l /dev/shm
lrwxrwxrwx    1 root     root             8 Nov 27 17:33 /dev/shm -> /run/shm/

root@Asustor:/etc # cd /dev/shm
root@Asustor:/run/shm #

Code: Select all

admin@Asustor:~ $ ls -l /dev/shm
lrwxrwxrwx    1 root     root             8 Nov 27 17:33 /dev/shm -> /run/shm/

admin@Asustor:~ $ cd /dev/shm/
admin@Asustor:/run/shm $

Code: Select all

root@Asustor:/volume1/.@root # cd /run/shm
root@Asustor:/run/shm # ls
7gbhujb54g8z9hu43jre8    sem.HW_SEMAPHORE_GPIO*   sem.music_lib*
fwupdate.status*         sem.HW_SEMAPHORE_IT87XX* sem.watch_map*
sem.EMBOARD_RELOAD*      sem.HW_SEMAPHORE_MV9125* sem.watch_queue*
sem.HALINFO_SEMAPHORE*   sem.HW_SEMAPHORE_PCI*
sem.HWSTATUS_SEMAPHORE*  sem.event_queue*

root@Asustor:/run/shm # ls -l
total 52
-rw-r--r--    1 root     root           128 Dec  3 14:27 7gbhujb54g8z9hu43jre8
-rwxr--r--    1 root     root           224 Dec  3 14:13 fwupdate.status*
---x-wx--T    1 root     root            32 Dec  3 14:14 sem.EMBOARD_RELOAD*
---x-wx--T    1 root     root            32 Dec  3 14:13 sem.HALINFO_SEMAPHORE*
---x-wx--T    1 root     root            32 Dec  3 14:13 sem.HWSTATUS_SEMAPHORE*
---x-wx--T    1 root     root            32 Dec  3 14:13 sem.HW_SEMAPHORE_GPIO*
---x-wx--T    1 root     root            32 Dec  3 14:13 sem.HW_SEMAPHORE_IT87XX*
---x-wx--T    1 root     root            32 Dec  3 14:13 sem.HW_SEMAPHORE_MV9125*
---x-wx--T    1 root     root            32 Dec  3 14:13 sem.HW_SEMAPHORE_PCI*
-rwx------    1 root     root            32 Dec  3 20:39 sem.event_queue*
-rwx------    1 root     root            32 Dec  3 20:39 sem.music_lib*
-rwx------    1 root     root            32 Dec  3 20:39 sem.watch_map*
-rwx------    1 root     root            32 Dec  3 20:39 sem.watch_queue*
AS-604T
2 GB Corsair RAM
4 x WD40EFRX-68WT0N0(WD RED 4TB) in Raid5
User avatar
clinton.hall
Posts: 845
Joined: Thu May 09, 2013 7:01 pm
Location: New Zealand
Contact:

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by clinton.hall »

ok.. wow...

So DON'T do the code suggested by TeamSpeak... this assumes there is no /dev/shm

what has happened in the latest FW is /dev/shm is actually a symlink to /run/shm and this has many files that are used by ADM...

the problem is teamspeak expects this location to be shared memory, and the shared memory is mapped elsewhere (/tmp)

I am surprised the Teamspeak team doesn't allow this to be passed as a parameter...
AS-604T
3 x ST4000DM0000 (Seagate 4TB) in Raid5
2 GB RAM expansion
AS-302T

Apps (user)
NZBGet - CouchPotato - SickBeard - Git - Python

Apps (maintainer):
NZBGet - BitTorrent Sync - Mylar - LazyLibrarian - Gamez
-Maintenance of Apps acquired from JohhnyFive since ADM2.0:
SABnzbd - CouchPotato - SickBeard - HeadPhones - Subsonic

About Me: http://fockwulf.wix.com/index
BeanR
Posts: 58
Joined: Sun Mar 23, 2014 12:10 am

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by BeanR »

clinton.hall wrote:ok.. wow...

So DON'T do the code suggested by TeamSpeak... this assumes there is no /dev/shm

what has happened in the latest FW is /dev/shm is actually a symlink to /run/shm and this has many files that are used by ADM...

the problem is teamspeak expects this location to be shared memory, and the shared memory is mapped elsewhere (/tmp)

I am surprised the Teamspeak team doesn't allow this to be passed as a parameter...
So that means that it will never work again? :(
User avatar
clinton.hall
Posts: 845
Joined: Thu May 09, 2013 7:01 pm
Location: New Zealand
Contact:

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by clinton.hall »

Sorry, I forgot about this issue... I'll have another look.
AS-604T
3 x ST4000DM0000 (Seagate 4TB) in Raid5
2 GB RAM expansion
AS-302T

Apps (user)
NZBGet - CouchPotato - SickBeard - Git - Python

Apps (maintainer):
NZBGet - BitTorrent Sync - Mylar - LazyLibrarian - Gamez
-Maintenance of Apps acquired from JohhnyFive since ADM2.0:
SABnzbd - CouchPotato - SickBeard - HeadPhones - Subsonic

About Me: http://fockwulf.wix.com/index
User avatar
clinton.hall
Posts: 845
Joined: Thu May 09, 2013 7:01 pm
Location: New Zealand
Contact:

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by clinton.hall »

Can you please try this version?
https://www.dropbox.com/s/uszgckqmokyg5 ... 29_any.apk

this appears to fix the issue for me. it changes the permissions on /run/shm... this shouldn't break anything on ADM since all other services that write to this location are run as root... But i need freedback to ensure everything else still runs as needed.
AS-604T
3 x ST4000DM0000 (Seagate 4TB) in Raid5
2 GB RAM expansion
AS-302T

Apps (user)
NZBGet - CouchPotato - SickBeard - Git - Python

Apps (maintainer):
NZBGet - BitTorrent Sync - Mylar - LazyLibrarian - Gamez
-Maintenance of Apps acquired from JohhnyFive since ADM2.0:
SABnzbd - CouchPotato - SickBeard - HeadPhones - Subsonic

About Me: http://fockwulf.wix.com/index
BeanR
Posts: 58
Joined: Sun Mar 23, 2014 12:10 am

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by BeanR »

All seem to work.
Thanks for the fix!
marped01
Posts: 22
Joined: Thu Jun 19, 2014 10:55 pm

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by marped01 »

New pack seems to be working, havent noticed any problems yet.
AS-604T
2 GB Corsair RAM
4 x WD40EFRX-68WT0N0(WD RED 4TB) in Raid5
User avatar
clinton.hall
Posts: 845
Joined: Thu May 09, 2013 7:01 pm
Location: New Zealand
Contact:

Re: TeamSpeak 3 problems after ADM 2.3.0.RBS1 update

Post by clinton.hall »

thanks for the feedback. I have submitted to AppCentral.
AS-604T
3 x ST4000DM0000 (Seagate 4TB) in Raid5
2 GB RAM expansion
AS-302T

Apps (user)
NZBGet - CouchPotato - SickBeard - Git - Python

Apps (maintainer):
NZBGet - BitTorrent Sync - Mylar - LazyLibrarian - Gamez
-Maintenance of Apps acquired from JohhnyFive since ADM2.0:
SABnzbd - CouchPotato - SickBeard - HeadPhones - Subsonic

About Me: http://fockwulf.wix.com/index
Post Reply

Return to “Teamspeak”