Les Partages de Memiks
Tag cloud
Picture wall
Daily
Plugins
  • ► Play Videos
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
13 results tagged support  ✕
TinyTable JavaScript Table Sorter – 2.5KB - Web Development Blog http://www.leigeber.com/2009/03/table-sorter/
Thu Oct 20 07:15:01 2011 archive.org
QRCode
Comments
thumbnail

This table sorter script is easy to use and feature packed at only 2.5KB. Features include column and alternate row highlighting, header class toggling, auto data type recognition, selective column sorting, pagination, link support, and more.

table sorter script easy feature packed only 5KB Features include column alternate row highlighting header class toggling auto data type recognition selective sorting pagination link support more
ShareCenter Pulse (DNS-320): Boîtier de Stockage réseau à 2 baies Sharecenter Pulse - Support technique de D-Link http://dlink.fr/cs/Satellite?c=Product_C&childpagename=DLinkEurope-FR%2FDLTechProduct&cid=1197388129174&p=1197318961474&packedargs=QuickLinksParentID%3D1197318961474%26locale%3D1195806373344&pagename=DLinkEurope-FR%2FDLWrapper
Thu Oct 20 07:11:13 2011 archive.org
QRCode
Comments
thumbnail
Support technique D Link pour ShareCenter Pulse DNS 320 Boîtier Stockage réseau baies Sharecenter
How to Install & Configure Chameleon 2.0 RC1 for OSX86 and Boot 132 Systems. | OSX86 http://www.ihackintosh.com/2009/04/how-to-install-chameleon-20-rc1/
Thu Oct 20 07:10:16 2011 archive.org
QRCode
Comments
thumbnail
chameleon 0 rc1 installation guide configuration theme timeout osx86 guides As know Chameleon first GUI bootloader now available wild check Latest has many new features like themes UI EFI support more If are looking for installing testing remember it’s RC release not final
SELECT TOP and START AT http://iablog.sybase.com/paulley/2009/04/select-top-and-start-at/
Thu Oct 20 07:07:00 2011 archive.org
QRCode
Comments
thumbnail
Lately my staff have spent some effort looking SQL Anywhere support for SELECT TOP N START AT M has supported
IBM Serveurs lame BladeCenter - France http://www-03.ibm.com/systems/fr/bladecenter/hardware/servers/index.html
Thu Oct 20 07:06:43 2011 archive.org
QRCode
Comments
thumbnail

IBM BladeCenter® blade servers support a wide selection of processor technologies and operating systems to allow clients to run all of their diverse workloads inside a single architecture. Blade servers help reduce complexity, improve systems

blade server servers blades bladecenter center intel IBM BladeCenter review what modular systems energy efficiency virtualization technology vmwa BladeCenter® support wide selection processor technologies operating allow clients run their diverse workloads inside single architecture Blade help reduce complexity improve
HOWTO: Set up VNC server with resumable sessions - Ubuntu Forums http://ubuntuforums.org/showthread.php?t=122402
Thu Oct 20 07:04:36 2011 archive.org
QRCode
Comments
thumbnail

HOWTO: Set up VNC server with resumable sessions Outdated Tutorials & Tips

HOWTO: Set up VNC server with resumable sessions
Warning!
This howto is old, unsupported, and relies on a broken package. This should be used as reference only.

So here's the complete list of steps that are required to set the VNC server that any user can login into and start a session. It is also persistent, meanning that even if you disconnect the VNC client your X session will not end (unless you explicitly log out) and you can reconnect to the same session again. The VNC server uses a separate display (:1) than your regular X server, which works with your physical display (:0). So two sessions can be active at the same time (one person sitting at the physical display and another remotely connecting using VNC).

  1. Enable XDMCP
    System->Administration->Login Screen Setup
    Tab Security->Enable XDMCP
    Tab XDMCP--> You can disable "Honor Indirect Requests"

Note: Before doing the next step, you need to make sure the extra repositories (e.g. universe) are enabled:
http://easylinux.info/wiki/Ubuntu#Ho...a_repositories

  1. Install required packages (vncserver and xinetd)

Code:

sudo apt-get install vnc4server xinetd

Note to AMD64 users: The current version of vnc4server in the repositories has a bug, so you need to download and install the fixed vnc4 packages as shown below:

Code:

wget http://qt1.iq.usp.br/download/vnc4server_4.0-7.3_amd64.deb
wget http://qt1.iq.usp.br/download/xvnc4viewer_4.0-7.3_amd64.deb
sudo dpkg -i vnc4server_4.0-7.3_amd64.deb
sudo dpkg -i xvnc4viewer_4.0-7.3_amd64.deb

  1. Set the VNC passwd
    Code:

sudo vncpasswd /root/.vncpasswd

  1. Add vnc service to xinetd:
    Code:

sudo gedit /etc/xinetd.d/Xvnc

Enter this into the new file:

Code:

service Xvnc
{
type = UNLISTED
disable = no
socket_type = stream
protocol = tcp
wait = yes
user = root
server = /usr/bin/Xvnc
server_args = -inetd :1 -query localhost -geometry 1024x768 -depth 16 -once -fp /usr/share/X11/fonts/misc -DisconnectClients=0 -NeverShared passwordFile=/root/.vncpasswd
port = 5901
}

  1. Restart xinetd (usually there is no need to reboot, but occasionally it might be required)

Code:

sudo /etc/init.d/xinetd stop
sudo killall Xvnc
sudo /etc/init.d/xinetd start

  1. That's it! To test that this is working first try to connect from the same machine (the machine we just set up the VNC server on):

Code:

vncviewer localhost:1

You should be prompted for the VNC password, and then see the GDM login screen where you can login and start a new X session. If that works, you can now go ahead and try to connect from remote machine using your favorite VNC client (remember to first close the local vncviewer we started above). Remember to use the VNC server machine's domain name or IP address, followed by :1 (e.g. 192.168.0.100:1). If connecting locally as shown above works, but connecting remotely fails, then this means you have a problem with a firewall which is blocking some ports. See the notes below about how to deal with that.

Note about ports: The VNC server set up as shown uses TCP port 5901. If you are using firewall software (e.g. firestarter) on that machine, you need to allow incoming connections on this port. If you are using a router which assigns your machine a private address (e.g. 192.168.0.100) which is not accessible from the internet, then you need to forward TCP port 5901 from the router to this machine.

Note about security: This setup allows any user to start an X-session remotely by logging in using his regular password (after starting the VNC connection using the VNC password), so if the user disconnects without logging out, any other user which knows the VNC password can connect afterwards and resume the same session that the first user started. So if you do not want to log out before disconnecting, it's advisable to at least lock your VNC X-session screen. Also note that while a remote user is connected thru VNC, no other connection will be accepted. An idle VNC client will be disconnected after one hour, but this can be changed by using the "-IdleTimeout" option in the server_args line in /etc/xinetd.d/Xvnc. For example, you can add "-IdleTimeout 300" to change it to 5 minutes.

HOWTO Set up VNC server with resumable sessions ubuntu forums linux forum support help Outdated Tutorials Tips
Site5 Web Hosting Forums - Search Results http://forums.site5.com/search.php?searchid=1583719
Thu Oct 20 07:04:32 2011 archive.org
QRCode
Comments
thumbnail

Site5 forums are a community of support and customers who discuss current web hosting events within the Site5 network. Downtime, customer support, and discussions about business, ecommerce, web, email and shared hosting are covered.

web hosting provider affordable email cheap company reseller domain business discount ecommerce internet shared plan Site5 forums are community support customers who discuss current events within network Downtime customer discussions about covered
Apache CXF -- WS-Security http://cxf.apache.org/docs/ws-security.html
Thu Oct 20 07:04:10 2011 archive.org
QRCode
Comments
business integration EAI SOA Service Oriented Architecture web services SOAP JBI JMS WSDL XML EDI Electronic Data Interchange standards support application middleware software solutions CXF open source Apache Services Framework WS Security
Apache CXF -- WS-Security http://cxf.apache.org/docs/ws-security.html
Thu Oct 20 07:03:54 2011 archive.org
QRCode
Comments
thumbnail
business integration EAI SOA Service Oriented Architecture web services SOAP JBI JMS WSDL XML EDI Electronic Data Interchange standards support application middleware software solutions CXF open source Apache Services Framework WS Security
Apache CXF -- WS-Security https://cwiki.apache.org/CXF20DOC/ws-security.html
Thu Oct 20 07:02:02 2011 archive.org
QRCode
Comments
thumbnail
business integration EAI SOA Service Oriented Architecture web services SOAP JBI JMS WSDL XML EDI Electronic Data Interchange standards support application middleware software solutions CXF open source
InfiniteMac OSx86 Community http://www.infinitemac.com/
Thu Oct 20 07:01:02 2011 archive.org
QRCode
Comments
thumbnail

Infinite Mac is a friendly OSx86 community forum and the best source for OSx86 support. Install Mac OS X on your x86 PC!

Mac OS X OSx86 Hackintosh project on PC Apple Project support run x86
[grub-dfe.iso] the one that boot's the retail dvd!!! - Hackint0sh http://www.hackint0sh.org/forum/f179/56516.htm
Thu Oct 20 07:00:11 2011 archive.org
QRCode
Comments
thumbnail

EDIT I AM NO LONGER GOING TO ASSIST FORUM USER'S WHO WISH TO RANDOMLY CONTACT ME BY PM! (Because of mailbox overflow) THE ONLY SUPPORT I WILL

EDIT AM NO LONGER GOING TO ASSIST FORUM USER S WHO WISH RANDOMLY CONTACT ME BY PM Because mailbox overflow THE ONLY SUPPORT WILL
[Hackint0sh] Current stable releases of OSX86 - Hackint0sh http://www.hackint0sh.org/forum/f179/43053.htm
Thu Oct 20 07:00:10 2011 archive.org
QRCode
Comments
thumbnail

Check this list before open a thread about "What version run in mine PC?" Last update: Dez/16/2008 ------------------------------------------

Hackint0sh Current stable releases OSX86 current list osx86 versions update updates chameleon 6 10 topic hacked betas qe ci open thread osxserver finished preparation osxdesktop http hackint0sh org forum showthread php 60385 f41qu3s nvkush support apple kb dl1343 back delta projects side nvinject nvidia guide included bootcd pc efi dl1349 lost users snowleo irc hu6667 retail trick links 44314 insanelymac index showtopic 113288 inform build news Check this before about quot What version run mine PC Last March 18 2011
4242 links, including 1169 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn