>
Currently Browsing: Journal

Adding a Package to Local 3rd Party Ubuntu Repository

Copy .deb packs to the binary folder: :# cp icaclient_13.7.0.10276927_amd64.deb /var/www/isrgubtu-repo/public_html/repository/amd64/dists/stable/3rd-party/binary-amd64 Recreate Packages and Release file: # cd /var/www/isrgubtu-repo/public_html/repository/amd64 # dpkg-scanpackages -a amd64 . > dists/stable/3rd-party/binary-amd64/Packages dpkg-scanpackages: info: Wrote 3 entries to output Packages file. #  apt-ftparchive release dists/stable/3rd-party/binary-amd64 > dists/stable/3rd-party/binary-amd64/Release Confirm new package is listed: # more dists/stable/3rd-party/binary-amd64/Packages...
read more

Local Apt Repository Client Configure

wget -qO – http://mc-server/repository/repo.key | sudo apt-key add – cd /etc/apt/sources.list.d sudo vi local.list deb [arch=amd64] http://mc-server.all-offroad.net/repository/amd64 stable contrib sudo chmod a+r /etc/apt/sources.list.d/local.list sudo apt update
read more

Testing for UDP Traffic

On the receiver run: tcpdump host <ip of sender> On sender run:   echo "PING" > /dev/udp/<ip of receiver>/<port #> Example: Sender $ echo "PING" > /dev/udp/192.9.20.115/6000" Receiver $ sudo tcpdump host 192.9.20.111 [sudo] password for jeverson: tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on enp0s25, link-type EN10MB (Ethernet), capture size 65535 bytes 12:13:51.616237 IP mc-server.all-offroad.net.37052 > kate.all-offroad.net.6000: UDP, length 5 12:13:51.616314 IP kate.all-offroad.net >...
read more

Fun With Dates in Excel

This will always give the date of the next Sunday: =A1 + 7 - WEEKDAY(A1)+1 If A1 is a Sunday, this will give the following Sunday (e.g. if A1 is Nov. 18, it will give Nov. 25). If instead, when A1 is a Sunday you want it to give you the same date, rather than the following Sunday (e.g. on Nov. 18, it gives Nov. 18), then use this version: =$A1 + 7 - WEEKDAY($A1,2) To find the first day of the following month, use the following EOMONTH function:...
read more

GoToMeeting: Convert Compressed WMV Recording.

By default, on Windows, GoToMeeting uses the G2M3 compression codec on stored recordings. This can be turned off in preferences. However, if that was not done, use the following steps to convert to a normal WMV file. Convert Source WMV G2M3/G2M4 Codec Video to WMV WMV3 Codec Video Step One: Please click here to download and install the GoToMeeting codec. Step Two: If you have Windows XP or Windows 7(32-bit), please go to C:\Program Files\Citrix\GoToMeeting\<????> (a folder with numbers, which is the version of GTM you have installed). If you have Windows 7(64-bit), please go to C:\Program Files...
read more

« Previous Entries Next Entries »