Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - amcmahan

Pages: [1]
1
Q&A / Updates
« on: August 21, 2015, 04:40:28 PM »
How is everyone updating their Ubermix Devices?
I have done the typical sudo apt-get update && sudo apt-get upgrade but it runs out of space on the partition with the 200+ updates available. At the moment, we are updating only the software our students use, such as chrome, firefox, etc. I am looking for a way to update our ubermix devices through the auto-update script we have setup. This is fine for the time being but it would make the sysadmin side of me feel better if they were able to fully update. Has anyone overcome this issue?

2
How-to / Enabling Remote Access
« on: July 10, 2015, 01:15:14 PM »
Recently, we had a student performing inappropriate searches. Most searches were blocked by our content filter but we were unable to remote in on the session and verify the student was actually performing these. We needed remote access and here is how I did it.

Code: [Select]
#!/bin/bash
# Set variable to your desired password
VNCPASS="Pa$$w0rd"

#Install x11vnc
apt-get install x11vnc

 # Store password in the password file
x11vnc -storepasswd $VNCPASS /etc/x11vnc.pass

# Run VNC server with password and other options
/usr/bin/x11vnc -xkb -forever -auth /var/run/lightdm/root/:0 -shared -display :0 -rfbauth /etc/x11vnc.pass -rfbport 5900 -bg -o /var/log/x11vnc.log 

Ok, that last line was a bit long so lets break it down:

/usr/bin/x11vnc | Run x11vnc
-xkb | Use the X Keyboard extension for reliable keyboard input
-forever | Keep listening for more connections rather than exiting as soon as the first client(s) disconnect.
-auth | Set  the  X authority file to be a file
-shared | More than one VNC connection is allowed
-display :0 | This option allows you to view the desktop session. Display 0 is the one the student see on their laptop
-rfbauth /etc/x11vnc.pass | Run with the password we created before
-rfbport 5900 | Set the port
-bg | Go into the background after screen setup.
-o /var/log/x11vnc.log | Output logs to /var/log/x11vnc.log for troubleshooting.

With this included in the script it will be awaiting connections when a network interface is up.
For more information on configuring the VNC server to your environment, check out the x11vnc man page:
http://manpages.ubuntu.com/manpages/trusty/man1/x11vnc.1.html



3
Hardware Specific / Re: Travelmate B115 Wireless
« on: July 10, 2015, 12:35:24 PM »
Panama-Buena Vista is also on Aruba and has experienced weird issues, although I think they were able to get them worked out. The 7260 seems to prefer 5GHz, so definitely make sure you are connecting to a capable 5GHz SSID.

The issue was with the Ubuntu driver jumping between radios. For awhile we shut off the 2.4 radio all together which also worked but was not desirable. We were able to force all capable devices to use the 5Ghz radio.

This link helped us: https://arubanetworkskb.secure.force.com/pkb/articles/HowTo/R-1447

Hope it helps.

Pages: [1]