LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-13-2018, 08:29 AM   #1
magicm
Member
 
Registered: May 2003
Distribution: Slackware
Posts: 237

Rep: Reputation: 152Reputation: 152
zoom conferencing software advice?


It seems I may need to start using this ... does anyone have any experience using it with slackware (preferably 14.2 x86_64)?

It seems that there's a 'generic linux' download bundle ... I'm vacillating between trying that or downloading one of the rpm formats and running it thru rpm2tgz first so I can use removepkg if it doesn't end up being needed.

TIA
 
Old 02-13-2018, 11:02 PM   #2
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by magicm View Post
I'm vacillating between trying that or downloading one of the rpm formats and running it thru rpm2tgz first so I can use removepkg if it doesn't end up being needed.
I've seen a few issues on this forum with people using rpm2tgz that I'd probably not recommend it. It's usually better to extract things manually and then create a Slackware package. I noticed they have a .deb package, which I've used to create a Slackware package for discord. Maybe you could look at my SlackBuild for an idea of what to do.

You should be able to just run the following command to get the required files and directories for the program. With some minor tweaking of my SlackBuild, it should be able to create a Slackware package pretty easily.

Code:
ar p zoom_amd64.deb data.tar.xz | unxz | tar xv
 
1 members found this post helpful.
Old 02-13-2018, 11:05 PM   #3
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
I haven't actually used it for a meeting, but the generic linux tarball appears to work. I got the first screen up and didn't see any striking errors in stdout.

I just extracted the tarball into its own directory and ran "zoom" from within there. Easy enough to clean up.

Code:
$ ./zoom
zoom started.
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-cranium'
[CZPClientLogMgr::LogClientEnvironment] [MacAddr: F4:6D:04:05:6D:BF][client: Linux][OS: Slackware 14.2][Hardware: CPU Core:6 Frenquency:1.7 G Memory size:16026MB CPU Brand:AMD Phenom(tm) II X6 1100T Processor][Req ID: ]
Linux Client Version is 2.0.115900.1201
QSG_RENDER_LOOP is 
XDG_CURRENT_DESKTOP = XFCE;   GDMSESSION = 
Graphics Card Info:: 04:00.0 VGA compatible controller: NVIDIA Corporation GK107 [GeForce GT 640] (rev a1)
Zoom package arch is 64bit, runing OS arch is x86_64
AppIconMgr::systemDesktopName log Desktop Name: xfce 
Error: Send error, 22 Invalid argument
Error: Send error, 22 Invalid argument
Error: Send error, 22 Invalid argument
Not sure about the send error messages.
 
Old 02-13-2018, 11:10 PM   #4
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
To build on Richard's post, if you want to use that generic build, you could just add a symlink to /usr/bin/ to point to wherever you have that package extracted.
 
Old 02-13-2018, 11:53 PM   #5
TommyC7
Member
 
Registered: Mar 2012
Distribution: Slackware, CentOS, OpenBSD, FreeBSD
Posts: 530

Rep: Reputation: Disabled
With anything like this, I recommend running ldd or objdump to see what libraries it uses (if it's not statically compiled) so that if necessary, you can obtain the libraries it wants.
 
Old 02-14-2018, 01:47 AM   #6
vonbiber
Member
 
Registered: Apr 2009
Distribution: slackware 14.1 64-bit, slackware 14.2 64-bit, SystemRescueCD
Posts: 533

Rep: Reputation: 129Reputation: 129
It requires qt5. I ran ldd on the zoom binary that I extracted from
zoom_x86_64.tar.xz and I got this:
Code:
...
libQt5WebEngineWidgets.so.5 => not found
libQt5WebEngineCore.so.5 => not found
libQt5Quick.so.5 => not found
libQt5Widgets.so.5 => not found
libQt5Gui.so.5 => not found
libQt5WebChannel.so.5 => not found
libQt5Qml.so.5 => not found
libQt5Network.so.5 => not found
libQt5Script.so.5 => not found
libQt5DBus.so.5 => not found
libQt5Positioning.so.5 => not found
libQt5Core.so.5 => not found
...
 
2 members found this post helpful.
Old 02-14-2018, 09:04 AM   #7
magicm
Member
 
Registered: May 2003
Distribution: Slackware
Posts: 237

Original Poster
Rep: Reputation: 152Reputation: 152
Quote:
It requires qt5.
Ouch .... I wasn't prepared for that. Well, I'll see if I really need to do this.
If so, this just might turn into "another fine growth opportunity".

Thanks for everyone's input so far. Off to do more research.
 
Old 02-15-2018, 06:15 PM   #8
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
The slackbuild for QT5 works rather well and QT5 can co-exist with QT4.
 
2 members found this post helpful.
Old 02-15-2018, 09:56 PM   #9
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
Quote:
Originally Posted by vonbiber View Post
It requires qt5. I ran ldd on the zoom binary that I extracted from
zoom_x86_64.tar.xz and I got this:
Code:
...
libQt5WebEngineWidgets.so.5 => not found
libQt5WebEngineCore.so.5 => not found
libQt5Quick.so.5 => not found
libQt5Widgets.so.5 => not found
libQt5Gui.so.5 => not found
libQt5WebChannel.so.5 => not found
libQt5Qml.so.5 => not found
libQt5Network.so.5 => not found
libQt5Script.so.5 => not found
libQt5DBus.so.5 => not found
libQt5Positioning.so.5 => not found
libQt5Core.so.5 => not found
...
All of those shared libraries are part of the tarball.

Code:
0 ✓ cranium@cranium ~ $ cd ~/Downloads/zoom/zoom/
0 ✓ cranium@cranium ~/Downloads/zoom/zoom $ ls -l libQt*
lrwxrwxrwx 1 cranium users        19 Nov 30 00:54 libQt5Core.so -> libQt5Core.so.5.9.2*
lrwxrwxrwx 1 cranium users        19 Nov 30 00:54 libQt5Core.so.5 -> libQt5Core.so.5.9.2*
lrwxrwxrwx 1 cranium users        19 Nov 30 00:54 libQt5Core.so.5.9 -> libQt5Core.so.5.9.2*
-rwxrwxr-x 1 cranium users   5470496 Nov 30 00:54 libQt5Core.so.5.9.2*
lrwxrwxrwx 1 cranium users        19 Nov 30 00:54 libQt5DBus.so -> libQt5DBus.so.5.9.2*
lrwxrwxrwx 1 cranium users        19 Nov 30 00:54 libQt5DBus.so.5 -> libQt5DBus.so.5.9.2*
lrwxrwxrwx 1 cranium users        19 Nov 30 00:54 libQt5DBus.so.5.9 -> libQt5DBus.so.5.9.2*
-rwxrwxr-x 1 cranium users    558512 Nov 30 00:54 libQt5DBus.so.5.9.2*
lrwxrwxrwx 1 cranium users        18 Nov 30 00:54 libQt5Gui.so -> libQt5Gui.so.5.9.2*
lrwxrwxrwx 1 cranium users        18 Nov 30 00:54 libQt5Gui.so.5 -> libQt5Gui.so.5.9.2*
lrwxrwxrwx 1 cranium users        18 Nov 30 00:54 libQt5Gui.so.5.9 -> libQt5Gui.so.5.9.2*
-rwxrwxr-x 1 cranium users   5940120 Nov 30 00:54 libQt5Gui.so.5.9.2*
lrwxrwxrwx 1 cranium users        26 Nov 30 00:54 libQt5NetworkAuth.so -> libQt5NetworkAuth.so.5.9.2*
lrwxrwxrwx 1 cranium users        26 Nov 30 00:54 libQt5NetworkAuth.so.5 -> libQt5NetworkAuth.so.5.9.2*
lrwxrwxrwx 1 cranium users        26 Nov 30 00:54 libQt5NetworkAuth.so.5.9 -> libQt5NetworkAuth.so.5.9.2*
-rwxrwxr-x 1 cranium users    216520 Nov 30 00:54 libQt5NetworkAuth.so.5.9.2*
lrwxrwxrwx 1 cranium users        22 Nov 30 00:54 libQt5Network.so -> libQt5Network.so.5.9.2*
lrwxrwxrwx 1 cranium users        22 Nov 30 00:54 libQt5Network.so.5 -> libQt5Network.so.5.9.2*
lrwxrwxrwx 1 cranium users        22 Nov 30 00:54 libQt5Network.so.5.9 -> libQt5Network.so.5.9.2*
-rwxrwxr-x 1 cranium users   1637928 Nov 30 00:54 libQt5Network.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5OpenGL.so -> libQt5OpenGL.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5OpenGL.so.5 -> libQt5OpenGL.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5OpenGL.so.5.9 -> libQt5OpenGL.so.5.9.2*
-rwxrwxr-x 1 cranium users    357840 Nov 30 00:54 libQt5OpenGL.so.5.9.2*
lrwxrwxrwx 1 cranium users        26 Nov 30 00:54 libQt5Positioning.so -> libQt5Positioning.so.5.9.2*
lrwxrwxrwx 1 cranium users        26 Nov 30 00:54 libQt5Positioning.so.5 -> libQt5Positioning.so.5.9.2*
lrwxrwxrwx 1 cranium users        26 Nov 30 00:54 libQt5Positioning.so.5.9 -> libQt5Positioning.so.5.9.2*
-rwxrwxr-x 1 cranium users    372304 Nov 30 00:54 libQt5Positioning.so.5.9.2*
lrwxrwxrwx 1 cranium users        27 Nov 30 00:54 libQt5PrintSupport.so -> libQt5PrintSupport.so.5.9.2*
lrwxrwxrwx 1 cranium users        27 Nov 30 00:54 libQt5PrintSupport.so.5 -> libQt5PrintSupport.so.5.9.2*
lrwxrwxrwx 1 cranium users        27 Nov 30 00:54 libQt5PrintSupport.so.5.9 -> libQt5PrintSupport.so.5.9.2*
-rwxrwxr-x 1 cranium users    449144 Nov 30 00:54 libQt5PrintSupport.so.5.9.2*
lrwxrwxrwx 1 cranium users        18 Nov 30 00:54 libQt5Qml.so -> libQt5Qml.so.5.9.2*
lrwxrwxrwx 1 cranium users        18 Nov 30 00:54 libQt5Qml.so.5 -> libQt5Qml.so.5.9.2*
lrwxrwxrwx 1 cranium users        18 Nov 30 00:54 libQt5Qml.so.5.9 -> libQt5Qml.so.5.9.2*
-rwxrwxr-x 1 cranium users   4158456 Nov 30 00:54 libQt5Qml.so.5.9.2*
lrwxrwxrwx 1 cranium users        20 Nov 30 00:54 libQt5Quick.so -> libQt5Quick.so.5.9.2*
lrwxrwxrwx 1 cranium users        20 Nov 30 00:54 libQt5Quick.so.5 -> libQt5Quick.so.5.9.2*
lrwxrwxrwx 1 cranium users        20 Nov 30 00:54 libQt5Quick.so.5.9 -> libQt5Quick.so.5.9.2*
-rwxrwxr-x 1 cranium users   4405824 Nov 30 00:54 libQt5Quick.so.5.9.2*
lrwxrwxrwx 1 cranium users        27 Nov 30 00:54 libQt5QuickWidgets.so -> libQt5QuickWidgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        27 Nov 30 00:54 libQt5QuickWidgets.so.5 -> libQt5QuickWidgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        27 Nov 30 00:54 libQt5QuickWidgets.so.5.9 -> libQt5QuickWidgets.so.5.9.2*
-rwxrwxr-x 1 cranium users     73336 Nov 30 00:54 libQt5QuickWidgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5Script.so -> libQt5Script.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5Script.so.5 -> libQt5Script.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5Script.so.5.9 -> libQt5Script.so.5.9.2*
-rwxrwxr-x 1 cranium users   2512232 Nov 30 00:54 libQt5Script.so.5.9.2*
lrwxrwxrwx 1 cranium users        25 Nov 30 00:54 libQt5WebChannel.so -> libQt5WebChannel.so.5.9.2*
lrwxrwxrwx 1 cranium users        25 Nov 30 00:54 libQt5WebChannel.so.5 -> libQt5WebChannel.so.5.9.2*
lrwxrwxrwx 1 cranium users        25 Nov 30 00:54 libQt5WebChannel.so.5.9 -> libQt5WebChannel.so.5.9.2*
-rwxrwxr-x 1 cranium users    122384 Nov 30 00:54 libQt5WebChannel.so.5.9.2*
lrwxrwxrwx 1 cranium users        28 Nov 30 00:54 libQt5WebEngineCore.so -> libQt5WebEngineCore.so.5.9.2*
lrwxrwxrwx 1 cranium users        28 Nov 30 00:54 libQt5WebEngineCore.so.5 -> libQt5WebEngineCore.so.5.9.2*
lrwxrwxrwx 1 cranium users        28 Nov 30 00:54 libQt5WebEngineCore.so.5.9 -> libQt5WebEngineCore.so.5.9.2*
-rwxrwxr-x 1 cranium users 107731568 Nov 30 00:54 libQt5WebEngineCore.so.5.9.2*
lrwxrwxrwx 1 cranium users        24 Nov 30 00:54 libQt5WebEngine.so -> libQt5WebEngine.so.5.9.2*
lrwxrwxrwx 1 cranium users        24 Nov 30 00:54 libQt5WebEngine.so.5 -> libQt5WebEngine.so.5.9.2*
lrwxrwxrwx 1 cranium users        24 Nov 30 00:54 libQt5WebEngine.so.5.9 -> libQt5WebEngine.so.5.9.2*
-rwxrwxr-x 1 cranium users    394808 Nov 30 00:54 libQt5WebEngine.so.5.9.2*
lrwxrwxrwx 1 cranium users        31 Nov 30 00:54 libQt5WebEngineWidgets.so -> libQt5WebEngineWidgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        31 Nov 30 00:54 libQt5WebEngineWidgets.so.5 -> libQt5WebEngineWidgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        31 Nov 30 00:54 libQt5WebEngineWidgets.so.5.9 -> libQt5WebEngineWidgets.so.5.9.2*
-rwxrwxr-x 1 cranium users    255848 Nov 30 00:54 libQt5WebEngineWidgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        22 Nov 30 00:54 libQt5Widgets.so -> libQt5Widgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        22 Nov 30 00:54 libQt5Widgets.so.5 -> libQt5Widgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        22 Nov 30 00:54 libQt5Widgets.so.5.9 -> libQt5Widgets.so.5.9.2*
-rwxrwxr-x 1 cranium users   6495800 Nov 30 00:54 libQt5Widgets.so.5.9.2*
lrwxrwxrwx 1 cranium users        24 Nov 30 00:54 libQt5X11Extras.so -> libQt5X11Extras.so.5.9.2*
lrwxrwxrwx 1 cranium users        24 Nov 30 00:54 libQt5X11Extras.so.5 -> libQt5X11Extras.so.5.9.2*
lrwxrwxrwx 1 cranium users        24 Nov 30 00:54 libQt5X11Extras.so.5.9 -> libQt5X11Extras.so.5.9.2*
-rwxrwxr-x 1 cranium users     14568 Nov 30 00:54 libQt5X11Extras.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5XcbQpa.so -> libQt5XcbQpa.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5XcbQpa.so.5 -> libQt5XcbQpa.so.5.9.2*
lrwxrwxrwx 1 cranium users        21 Nov 30 00:54 libQt5XcbQpa.so.5.9 -> libQt5XcbQpa.so.5.9.2*
-rwxrwxr-x 1 cranium users   1406120 Nov 30 00:54 libQt5XcbQpa.so.5.9.2*
 
3 members found this post helpful.
Old 02-16-2018, 04:46 PM   #10
magicm
Member
 
Registered: May 2003
Distribution: Slackware
Posts: 237

Original Poster
Rep: Reputation: 152Reputation: 152
Thanks everyone - It seems I tried to make this much harder than it needed to be. As Richard Cranium pointed out, I just
Quote:
extracted the tarball into its own directory and ran "zoom" from within there.
He was also correct that
Quote:
All of those shared libraries are part of the tarball
. So no separate install of Qt5 was needed.

Marking this solved.
 
Old 04-21-2020, 02:46 AM   #11
alpinito1
LQ Newbie
 
Registered: Apr 2020
Posts: 1

Rep: Reputation: Disabled
Wink

Quote:
Originally Posted by magicm View Post
Thanks everyone - It seems I tried to make this much harder than it needed to be. As Richard Cranium pointed out, I just
He was also correct that . So no separate install of Qt5 was needed.

Marking this solved.
Quote:
Originally Posted by Richard Cranium View Post
I haven't actually used it for a meeting, but the generic linux tarball appears to work. I got the first screen up and didn't see any striking errors in stdout.

I just extracted the tarball into its own directory and ran "zoom" from within there. Easy enough to clean up.

Code:
$ ./zoom
zoom started.
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-cranium'
[CZPClientLogMgr::LogClientEnvironment] [MacAddr: F4:6D:04:05:6D:BF][client: Linux][OS: Slackware 14.2][Hardware: CPU Core:6 Frenquency:1.7 G Memory size:16026MB CPU Brand:AMD Phenom(tm) II X6 1100T Processor][Req ID: ]
Linux Client Version is 2.0.115900.1201
QSG_RENDER_LOOP is 
XDG_CURRENT_DESKTOP = XFCE;   GDMSESSION = 
Graphics Card Info:: 04:00.0 VGA compatible controller: NVIDIA Corporation GK107 [GeForce GT 640] (rev a1)
Zoom package arch is 64bit, runing OS arch is x86_64
AppIconMgr::systemDesktopName log Desktop Name: xfce 
Error: Send error, 22 Invalid argument
Error: Send error, 22 Invalid argument
Error: Send error, 22 Invalid argument
Not sure about the send error messages.
This was asked long ago, but maybe some people will run again into this kind of problems.

In my case, I was experiencing the same problem and it turns out it was our proxy who was blocking zoom communications... I simply temporarily disabled my proxy seetings (->System settings->Network->Network proxy) and then it just worked perfectly... I have to contact IT people!

Best,
 
1 members found this post helpful.
Old 04-21-2020, 04:22 PM   #12
Regnad Kcin
Member
 
Registered: Jan 2014
Location: Beijing
Distribution: Slackware 64 -current .
Posts: 663

Rep: Reputation: 460Reputation: 460Reputation: 460Reputation: 460Reputation: 460
I've been using Zoom in Slackware-64 -current and kde5 and have no complaints with it. I think I tried it with xfce also and it works there also if i recall correctly.
It works with OpenBoard-1.53 and my cheap logitech webcam and my lovely NikonZ6 used as webcam and does everything I want it to do. You need to watch out for where your screens and windows are if you are screensharing and videosharing etc, so some planning ahead and trying it out (a rehearsal if you will) in advance of a major event is a good idea.

Last edited by Regnad Kcin; 04-21-2020 at 04:25 PM.
 
Old 04-21-2020, 04:26 PM   #13
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Slackware, Debian, OpenBSD
Posts: 7,349

Rep: Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748
Zoom works for 14.2 and Slackware-current. It's on SBo.

http://www.slackbuilds.org/repositor...rk/zoom-linux/
 
3 members found this post helpful.
Old 04-21-2020, 04:46 PM   #14
Skaendo
Senior Member
 
Registered: Dec 2014
Location: West Texas, USA
Distribution: Slackware64-14.2
Posts: 1,445

Rep: Reputation: Disabled
Zoom also seems to come with a bunch of security issues. Including webcam hijacks.

https://www.forbes.com/sites/zakdoff...-settings-now/
https://www.theverge.com/2020/4/1/21...emand-response
https://www.wired.com/story/zoom-bug-webcam-hackers/
 
4 members found this post helpful.
Old 04-21-2020, 06:10 PM   #15
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Slackware, Debian, OpenBSD
Posts: 7,349

Rep: Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748Reputation: 3748
Quote:
Originally Posted by Skaendo View Post
Zoom also seems to come with a bunch of security issues. Including webcam hijacks.
Yes. The CEO of Zoom was not prepared for the unprecedented need for the software, and he admitted that their security policies were lacking. My understanding is that they've worked to improve the security of their application.
 
2 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
video conferencing software linux tomv Linux - Software 3 09-10-2014 10:08 AM
Customizable Video Conferencing software sala_mander Linux - Software 0 06-09-2012 01:07 PM
Cross-platform video conferencing software deiussum Linux - Software 2 05-28-2004 03:56 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:46 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration