[solved] Owncloud over SSL: http works, but over https only apache

Hello,
I try to setup owncloud with SSL.
Accessing over http works, but over https, I reach the default apache page instead of the owncloud page.
(I set up SSL according to https://wiki.archlinux.org/index.php/LAMP#SSL )
How could I make the owncloud site available over https?
relevant files:
owncloud.conf:
<IfModule mod_alias.c>
Alias /owncloud /usr/share/webapps/owncloud/
</IfModule>
<Directory /usr/share/webapps/owncloud/>
Options FollowSymlinks
Require all granted
php_admin_value open_basedir "/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/owncloud/:/etc/webapps/owncloud/:/mt/daten/owncloud/"
</Directory>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /usr/share/webapps/owncloud
ServerName http://example.com/owncloud
</VirtualHost>
I tried to change 80 to 443, but then, systemctl restart httpd didn't work. (apache failed)
httpd.conf:
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
# will be interpreted as '/logs/access_log'.
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to specify a local disk on the
# Mutex directive, if file-based mutexes are used. If you wish to share the
# same ServerRoot for multiple httpd daemons, you will need to change at
# least PidFile.
ServerRoot "/etc/httpd"
# Mutex: Allows you to set the mutex mechanism and mutex file directory
# for individual mutexes, or change the global defaults
# Uncomment and change the directory if mutexes are file-based and the default
# mutex file directory is not on a local disk or is not appropriate for some
# other reason.
# Mutex default:/run/httpd
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 80
<IfModule mod_ssl.c>
Listen 443
</IfModule>
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule authn_file_module modules/mod_authn_file.so
#LoadModule authn_dbm_module modules/mod_authn_dbm.so
#LoadModule authn_anon_module modules/mod_authn_anon.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule authn_socache_module modules/mod_authn_socache.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
#LoadModule authz_dbm_module modules/mod_authz_dbm.so
#LoadModule authz_owner_module modules/mod_authz_owner.so
#LoadModule authz_dbd_module modules/mod_authz_dbd.so
LoadModule authz_core_module modules/mod_authz_core.so
#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule auth_basic_module modules/mod_auth_basic.so
#LoadModule auth_form_module modules/mod_auth_form.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule allowmethods_module modules/mod_allowmethods.so
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule cache_module modules/mod_cache.so
#LoadModule cache_disk_module modules/mod_cache_disk.so
#LoadModule cache_socache_module modules/mod_cache_socache.so
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
#LoadModule socache_dbm_module modules/mod_socache_dbm.so
#LoadModule socache_memcache_module modules/mod_socache_memcache.so
#LoadModule watchdog_module modules/mod_watchdog.so
#LoadModule macro_module modules/mod_macro.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule dumpio_module modules/mod_dumpio.so
#LoadModule echo_module modules/mod_echo.so
#LoadModule buffer_module modules/mod_buffer.so
#LoadModule data_module modules/mod_data.so
#LoadModule ratelimit_module modules/mod_ratelimit.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
#LoadModule ext_filter_module modules/mod_ext_filter.so
#LoadModule request_module modules/mod_request.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
#LoadModule reflector_module modules/mod_reflector.so
#LoadModule substitute_module modules/mod_substitute.so
#LoadModule sed_module modules/mod_sed.so
#LoadModule charset_lite_module modules/mod_charset_lite.so
#LoadModule deflate_module modules/mod_deflate.so
#LoadModule xml2enc_module modules/mod_xml2enc.so
#LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule mime_module modules/mod_mime.so
#LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
#LoadModule log_debug_module modules/mod_log_debug.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule logio_module modules/mod_logio.so
#LoadModule lua_module modules/mod_lua.so
LoadModule env_module modules/mod_env.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
#LoadModule remoteip_module modules/mod_remoteip.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
#LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_express_module modules/mod_proxy_express.so
#LoadModule session_module modules/mod_session.so
#LoadModule session_cookie_module modules/mod_session_cookie.so
#LoadModule session_crypto_module modules/mod_session_crypto.so
#LoadModule session_dbd_module modules/mod_session_dbd.so
LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
#LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
LoadModule ssl_module modules/mod_ssl.so
#LoadModule dialup_module modules/mod_dialup.so
LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
#LoadModule mpm_event_module modules/mod_mpm_event.so
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
LoadModule unixd_module modules/mod_unixd.so
#LoadModule heartbeat_module modules/mod_heartbeat.so
#LoadModule heartmonitor_module modules/mod_heartmonitor.so
#LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
#LoadModule asis_module modules/mod_asis.so
#LoadModule info_module modules/mod_info.so
#LoadModule suexec_module modules/mod_suexec.so
#LoadModule cgid_module modules/mod_cgid.so
#LoadModule cgi_module modules/mod_cgi.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_lock_module modules/mod_dav_lock.so
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
#LoadModule imagemap_module modules/mod_imagemap.so
#LoadModule actions_module modules/mod_actions.so
#LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
#LoadModule rewrite_module modules/mod_rewrite.so
#own additions:
LoadModule php5_module modules/libphp5.so
<IfModule unixd_module>
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
User http
Group http
</IfModule>
# 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [email protected]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If your host doesn't have a registered DNS name, enter its IP address here.
#ServerName www.example.com:80
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
<Directory />
Options FollowSymLinks
AllowOverride none
Require all denied
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/srv/http"
<Directory "/srv/http">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Require all granted
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<Files ".ht*">
Require all denied
</Files>
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog "/var/log/httpd/error_log"
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
<IfModule log_config_module>
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
CustomLog "/var/log/httpd/access_log" common
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog "/var/log/httpd/access_log" combined
</IfModule>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
</IfModule>
<IfModule cgid_module>
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#Scriptsock cgisock
</IfModule>
# "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
<IfModule mime_module>
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
TypesConfig conf/mime.types
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#AddType application/x-gzip .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#AddHandler cgi-script .cgi
# For type maps (negotiated resources):
#AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
</IfModule>
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#MIMEMagicFile conf/magic
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall may be used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
# Defaults: EnableMMAP On, EnableSendfile Off
#EnableMMAP off
#EnableSendfile on
# Supplemental configuration
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf
# Multi-language error messages
Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
Include conf/extra/httpd-autoindex.conf
# Language settings
Include conf/extra/httpd-languages.conf
# User home directories
Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
# Various default settings
Include conf/extra/httpd-default.conf
# Include owncloud
Include /etc/httpd/conf/extra/owncloud.conf
Include conf/extra/php5_module.conf
# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
# Secure (SSL/TLS) connections
Include conf/extra/httpd-ssl.conf
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
# uncomment out the below to deal with user agents that deliberately
# violate open standards by misusing DNT (DNT *must* be a specific
# end-user choice)
#<IfModule setenvif_module>
#BrowserMatch "MSIE 10.0;" bad_DNT
#</IfModule>
#<IfModule headers_module>
#RequestHeader unset DNT env=bad_DNT
#</IfModule>
thanks!
Last edited by Carl Karl (2014-05-06 07:40:53)

OK, solved.
What I made wrong:
https://localhost leads to the apache page
https://localhost/owncloud leads to the owncloud page.
(Just as an information if there are other apache noobs like me...)

Similar Messages

  • Trying to determine if LDAP over SSL is working using LDP.exe

    Hi,
    I just wanted to confirm that LDAP over SSL is working properly on our domain controller.  When I connect using LDP.exe on my Windows 7 computer, I get the following output:
    ld = ldap_sslinit("dc1.domain.com", 636, 1);
    Error 0 = ldap_set_option(hLdap, LDAP_OPT_PROTOCOL_VERSION, 3);
    Error 0 = ldap_connect(hLdap, NULL);
    Error 0 = ldap_get_option(hLdap,LDAP_OPT_SSL,(void*)&lv);
    Host supports SSL, SSL cipher strength = 128 bits
    Established connection to dc1.domain.com.
    Retrieving base DSA information...
    Getting 1 entries:
    Dn: (RootDSE)
    <unnecessary details>
    It looks like it is working, but I wasn't sure if the Error 0's mean there is some sort of problem.
    Also, when I run a Simple bind with my credentials, I get the following output:
    res = ldap_simple_bind_s(ld, 'myuseraccount-at-domaindotcom', <unavailable>); // v.3
    Authenticated as: 'DOMAIN\myuseraccount'.
    Finally, when I run a Bind as currently logged on user (with Encrypt traffic after bind checked), I get the following output:
    53 = ldap_set_option(ld, LDAP_OPT_ENCRYPT, 1)
    res = ldap_bind_s(ld, NULL, &NtAuthIdentity, NEGOTIATE (1158)); // v.3
    {NtAuthIdentity: User='NULL'; Pwd=<unavailable>; domain = 'NULL'}
    Authenticated as: 'DOMAIN\myuseraccount'.
    I followed all the instructions found in Microsoft article KB-321051 to get LDAP over SSL working with a valid 3rd party certificate on one of our Windows 2008 R2 domain controllers.  However, when I test Active Directory Authentication on our
    WatchGuard Management Server after importing the CA certificate, the test fails.  In order to use Active Directory Authentication, LDAPS (LDAP over SSL) must be enabled in the Active Directory domain and I am not 100% sure that it is enabled properly.
    Any advice or additional insight would be greatly appreciated.
    Thanks!

    Some ideas:
    DNS Name: KB-321051 says that you need the DNS name in either Subject CN or Subject Alternative Name. Which one did you use? Windows clients are fine with an empty CN and only the SAN populated (there the "either or" statement in the article)
    but third-party tools often look for the DNS name in the Subject CN.
    Even if the WatchGuard Server runs on Windows it might use its own certificate checking logic.
    DC certificate(s): Does the DC have more than this certificate? If yes I'd run a network trace to check which one the machine is actually sending in the SSL handshake.
    Chaining issues at your LDAP client / the WatchGuard Management Server:
    Very often such issues are related to the fact that the certificate chain is not validated properly. Some typical issues:
    It is not clear whether the client uses the Windows certificate store (even if it runs on a Windows server).
    Tools / systems / PKI clients can only deal with a single root CA, not with a hierarchy.
    You need to import both Root and intermediate CAs as the client cannot fetch the intermediates from AIA URLs.
    The client cannot access CRL URLs because of firewalls rules or missing access (e.g.: A CRL URL in AD is used but the client does not have an AD user in whose context it would try to fetch the CRL).
    The client has issues with blanks or special characters in CDP or AIA URLs.
    Having a quick look at
    WatchGuard documentation it seems to me that they are using their own certificate stores you need to import CA certificates to. And they only mention a "Root CA" so if your PKI has two levels you might need to import both CAs to the so-called Root store.
    Elke

  • HT201317 Is there a way to "stream" older photo's to my PC stored on my Iphone before I upset up "Photo Stream?  NOTE:  My Photo Stream "pushing function is working, but I can only push "new" photos to my PC.

    Is there a way to stream  "older" photos to my PC that were stored on my Iphone before I implemented "Photo Stream?  NOTE:  My Photo Stream "pushing" function is working, but I can only push "new" photos to my PC.

    It might not be streaming but have you considered copying the photos directly off the iphone onto your PC?  I plug my phone in via the USB cable like usual and in Windows Explorer, navigate to Computer\Apple iPhone\Internal Storage\DCIM\860xxxx  and there they are. Copy & paste and you have pictures.
    Hope it helps.

  • When installing ICloud 3.1 always the Same Message appears: You have more than 1 Outlook, it doesnt work. but i have only Outlook 2013, any idea?

    When installing ICloud 3.1 always the Same Message appears: You have more than 1 Outlook, it doesnt work. but i have only Outlook 2013, any idea?

    Did you have previous versios of Outlook before you installed 2013?

  • Weirdness: http works but https does not

    I have a very weird problem which no-one has been able to fix.
    I have an Airport Extreme card and a third-party DSL modem / wireless router combo. Most internet activities are fine (ftp, email, http) but whenever I try to access a secure site (https) or run a VPN connection (Apani Netlock) one of three things happen:
    1. I spontaneously disassociate from my WiFi base station, losing the wireless connection. If I cancel the https request or close down the VPN, the wireless link comes back after 5-10 seconds.
    2. I get TCP/IP timeouts - no responses from server.
    3. It works, but extremely slowly. Loading a single https web page can take anywhere between 30 seconds to 3 minutes. I'm on a 1.5 Mb/s DSL link.
    Things I have tried:
    1. Connecting by ethernet directly to the router instead of using 802.11b/g - all the problems go away. So it is not a DSL modem or ISP issue.
    2. Changing the MTU of the Airport Extreme card (en1). I have tried values from 600 to 1492. Same problems exist - makes no difference.
    3. Tried an Apple Airport base station connected by ethernet to the modem instead of using the modem's wireless. Same problems exist, although the VPN doesn't work at all (even slowly) because the ABS does not support that particular VPN protocol.
    I'm at my wits end. No one I have spoken to at tech support at the ISP or modem manufacturer have ever heard of such a problem.
    HELP!

    Ok, it's some years later. and the problem has gone away. Things which may have fixed it: OS software upgrades, client software upgrades, better signal strength (this problem did seem more prevalent at low WiFi signal strengths).

  • HT6337 Continuity works but iPad shows only callers number not its name, why?

    I have two fresh systems on my iPad Air and iPhone 6  both 8.1.2
    Continuity works but on receiving a call iPad will only show callers number not its name - why. Caller is part of contacts

    Are your contacts using an iCloud account?  Is this same iCloud account used on your iPad and iPhone?  I believe that would be required to see the contact's name on your iPad.

  • [SOLVED] Brightness control over keyboard not working, but it works...

    Hello,
    I recently got a new laptop at work and I put a fresh Arch on it.
    Almost everything works perfectly, but I have one weird issue.
    I can control backlight of my display via ACPI; I wrote a simple script for it:
    pabre@pbr-laptok:~$ cat /usr/local/sbin/brightness.sh
    #!/bin/bash
    DEV=/sys/class/backlight/intel_backlight/brightness
    MAX=`cat /sys/class/backlight/intel_backlight/max_brightness`
    ACT=`cat /sys/class/backlight/intel_backlight/actual_brightness`
    MIN=0
    STEPS=10
    STEP=$((MAX/STEPS))
    if [ $1 == "+" ]; then
    if [ $((ACT+STEP)) -le $MAX ]; then
    echo $((ACT+STEP)) > $DEV
    fi
    elif [ $1 == "-" ]; then
    if [ $((ACT-STEP)) -ge $MIN ]; then
    echo $((ACT-STEP)) > $DEV
    fi
    fi
    exit 0
    I put myself a sudoers entry for it:
    root@pbr-laptok:~# cat /etc/sudoers | grep pabre
    pabre ALL=(ALL) NOPASSWD: /usr/local/sbin/brightness.sh,/usr/bin/pacman -Sy
    And it works like a charm, when run from a terminal:
    pabre@pbr-laptok:~$ sudo /usr/local/sbin/brightness.sh -
    So, my next step was to bind that script to appropriate keys on my keyboard (Fn + UP/DOWN - which are XF86MonBrightnessUp and XF86MonBrightnessDown)
    My window manager is Awesome, so I put to the config:
    awful.key({ }, "XF86MonBrightnessUp", function () awful.util.spawn("sudo /usr/local/sbin/brightness.sh +") end),
    awful.key({ }, "XF86MonBrightnessDown", function () awful.util.spawn("sudo /usr/local/sbin/brightness.sh -") end),
    among others like touchpad toggling, volume control, etc (which are working without issues)
    And now, guess what... Those keys fire that script, change the brightness and after second or less - it comes back to old value! You can see that display blinks (for example gets brighter and moment after - it goes back to previous state).
    I tried to debug it, putting to the script something like:
    if [ $1 == "+" ]; then
    if [ $((ACT+STEP)) -le $MAX ]; then
    echo $((ACT+STEP)) > $DEV
    cat /sys/class/backlight/intel_backlight/actual_brightness >> /tmp/br.log
    sleep 1
    cat /sys/class/backlight/intel_backlight/actual_brightness >> /tmp/br.log
    fi
    And the first entry was that what it was supposed to be, while te other (second after) Was again the old value.
    Does anybody have any idea what "reverts" my changes to the /sys/class/backlight/intel_backlight/brightness and why it works without issues when simply run from a terminal?
    Last edited by PaBre (2014-03-16 17:10:54)

    I think that I've found partial answer.
    When I changed key binds to another keys - it works!
    But even then, when I press XF86MonBrightnessUp or XF86MonBrightnessDown, the brightness level gets reset. And now they are not bind to anything (at last not explicit).
    So it looks that I have to found how to decouple the internal, not working as expected, bind to these keys.

  • [solved] pacman -Syy and -Syu work, but packages won't install

    Hello, everyone. I'm really new to Arch, but I did search all over Google and the forums and couldn't find an answer to this, so I thought I'd ask the forums.
    I just installed Arch, and I'm trying to install sudo.
    When I run pacman -S sudo, I get:
    sudo package not found, searching for group...
    error: 'sudo': not found in syncdb
    However, when I run pacman -Syy, I get:
    ::Synchronizing package databases...
    error: failed retrieving file 'core.db.tar.gz' from mirrors.kernel.org: File unavailable (e.g., file not found, no access)
    ...(other similar errors from other mirrors)
    core     4.1K     43.7K/s     00:00:00 [##########] 100%
    ...(same for extra and community)
    (Sorry I didn't copy the entire output out, I'm not connected to the internet on the Arch computer, so I'm typing this by hand on another one. I tried a bunch of mirrors earlier, and only one mirror actually works: the Arch one, which as a download cap.)
    So my package databases are getting updated, but somehow pacman isn't recognizing them or something.
    I updated pacman to see if that would work.
    pacman -V
    Pacman v3.3.3 - libalpm v4.0.3
    It didn't.
    I'm running 2.6.33-ARCH according to lib/modules.
    I haven't changed my etc/pacman.conf. [core] and its Include, [extra] and its Include, and [community] and its Include are all uncommented. No packages are ignored.
    My etc/pacman.d/mirrorlist was updated from the Arch Mirror Generator. I uncommented everything in United States.
    I have internet set up, and I've tried taking down wlan0 and putting it back up. iwconfig shows that wlan0 works and is connected, and I'm pinging google.com successfully, so I know internet works.
    Thanks in advance for any help, and please let me know if I'm missing any information. I tried to be thorough.
    Last edited by bananagranola (2011-08-08 22:20:10)

    Wow, that was fast! Thanks!
    /etc/pacman.d/mirrorlist:
    ## Arch Linux repository mirrorlist
    ## Generated on 2011-08-07
    ## Any
    #Server = [url]ftp://mirrors.kernel.org/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.kernel.org/archlinux/$repo/os/$arch[/url]
    ## Australia
    #Server = [url]ftp://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.internode.on.net/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch[/url]
    ## Belarus
    #Server = [url]ftp://ftp.byfly.by/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.byfly.by/pub/archlinux/$repo/os/$arch[/url]
    ## Belgium
    #Server = [url]ftp://archlinux.mirror.kangaroot.net/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.mirror.kangaroot.net/$repo/os/$arch[/url]
    ## Brazil
    #Server = [url]ftp://archlinux.c3sl.ufpr.br/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.c3sl.ufpr.br/$repo/os/$arch[/url]
    ## Canada
    #Server = [url]ftp://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.its.dal.ca/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.its.dal.ca/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://less.cogeco.net/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://less.cogeco.net/pub/archlinux/$repo/os/$arch[/url]
    ## Chile
    #Server = [url]ftp://mirror.archlinux.cl/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.netglobalis.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.netglobalis.net/archlinux/$repo/os/$arch[/url]
    ## China
    #Server = [url]http://mirrors.163.com/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.bjtu.edu.cn/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror6.bjtu.edu.cn/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch[/url]
    ## Colombia
    #Server = [url]http://www.laqee.unal.edu.co/archlinux/$repo/os/$arch[/url]
    ## Czech Republic
    #Server = [url]http://mirror.vpsfree.cz/archlinux/$repo/os/$arch[/url]
    ## Denmark
    #Server = [url]ftp://mirrors.dotsrc.org/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.dotsrc.org/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.klid.dk/archlinux/$repo/os/$arch[/url]
    ## Estonia
    #Server = [url]ftp://ftp.eenet.ee/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.eenet.ee/pub/archlinux/$repo/os/$arch[/url]
    ## Finland
    #Server = [url]ftp://mirror.academica.fi/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.academica.fi/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.archlinux.fi/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.archlinux.fi/archlinux/$repo/os/$arch[/url]
    ## France
    #Server = [url]http://mir.archlinux.fr/$repo/os/$arch[/url]
    #Server = [url]ftp://distrib-coffee.ipsl.jussieu.fr/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://distrib-coffee.ipsl.jussieu.fr/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mir1.archlinux.fr/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mir1.archlinux.fr/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://miroir.ezvan.fr/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.polymorf.fr/$repo/os/$arch[/url]
    ## Germany
    #Server = [url]http://archlinux.limun.org/$repo/os/$arch[/url]
    #Server = [url]ftp://artfiles.org/archlinux.org/$repo/os/$arch[/url]
    #Server = [url]http://artfiles.org/archlinux.org/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.de.leaseweb.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.de.leaseweb.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.devnu11.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch[/url]
    #Server = [url]http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirrors.n-ix.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.n-ix.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.selfnet.de/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.selfnet.de/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch[/url]
    ## Great Britain
    #Server = [url]ftp://mirror.lividpenguin.com/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.lividpenguin.com/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://archlinux.positive-internet.com/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.positive-internet.com/$repo/os/$arch[/url]
    #Server = [url]ftp://mirrors.uk2.net/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.mirrors.uk2.net/$repo/os/$arch[/url]
    ## Greece
    #Server = [url]ftp://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.otenet.gr/pub/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch[/url]
    ## Hungary
    #Server = [url]ftp://ftp.mfa.kfki.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch[/url]
    ## India
    #Server = [url]ftp://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch[/url]
    ## Ireland
    #Server = [url]ftp://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch[/url]
    #Server = [url]http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch[/url]
    ## Israel
    #Server = [url]ftp://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch[/url]
    ## Italy
    #Server = [url]http://mirrors.prometeus.net/archlinux/$repo/os/$arch[/url]
    ## Japan
    #Server = [url]ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch[/url]
    ## Kazakhstan
    #Server = [url]ftp://archlinux.kz/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.kz/$repo/os/$arch[/url]
    ## Korea
    #Server = [url]ftp://mirror.yongbok.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.yongbok.net/archlinux/$repo/os/$arch[/url]
    ## Latvia
    #Server = [url]http://archlinux.goodsoft.lv/$repo/os/$arch[/url]
    ## Luxembourg
    #Server = [url]ftp://archlinux.mirror.root.lu/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.mirror.root.lu/$repo/os/$arch[/url]
    ## Moldova
    #Server = [url]ftp://mirror.ihost.md/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.ihost.md/archlinux/$repo/os/$arch[/url]
    ## Netherlands
    #Server = [url]http://mirrors3.kernel.org/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.nl.leaseweb.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.nl.leaseweb.net/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.nluug.nl/pub/os/Linux/distr/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/$repo/os/$arch[/url]
    ## New Caledonia
    #Server = [url]ftp://archlinux.nautile.nc/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.nautile.nc/archlinux/$repo/os/$arch[/url]
    ## Norway
    #Server = [url]ftp://mirror.archlinux.no/$repo/os/$arch[/url]
    #Server = [url]http://mirror.archlinux.no/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.pvv.ntnu.no/pub/archlinux/$repo/os/$arch[/url]
    ## Poland
    #Server = [url]ftp://ftp.piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch[/url]
    #Server = [url]http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch[/url]
    ## Portugal
    #Server = [url]ftp://ftp.rnl.ist.utl.pt/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.rnl.ist.utl.pt/pub/archlinux/$repo/os/$arch[/url]
    ## Romania
    #Server = [url]ftp://mirrors.adnettelecom.ro/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.adnettelecom.ro/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.archlinux.ro/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.archlinux.ro/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.roedu.net/mirrors/archlinux.org/$repo/os/$arch[/url]
    #Server = [url]http://ftp.roedu.net/mirrors/archlinux.org/$repo/os/$arch[/url]
    ## Russia
    #Server = [url]http://mirror.worldis.me/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirror.yandex.ru/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirror.yandex.ru/archlinux/$repo/os/$arch[/url]
    ## Spain
    #Server = [url]ftp://ftp.rediris.es/mirror/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://sunsite.rediris.es/mirror/archlinux/$repo/os/$arch[/url]
    ## Sweden
    #Server = [url]ftp://ftp.ds.hj.se/pub/os/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.ds.hj.se/pub/os/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors4.kernel.org/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.portlane.com/pub/os/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.portlane.com/pub/os/linux/archlinux/$repo/os/$arch[/url]
    ## Switzerland
    #Server = [url]ftp://archlinux.puzzle.ch/$repo/os/$arch[/url]
    #Server = [url]http://archlinux.puzzle.ch/$repo/os/$arch[/url]
    ## Taiwan
    #Server = [url]ftp://linux.cs.nctu.edu.tw/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://linux.cs.nctu.edu.tw/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch[/url]
    #Server = [url]ftp://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch[/url]
    ## Turkey
    #Server = [url]ftp://ftp.linux.org.tr/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.linux.org.tr/archlinux/$repo/os/$arch[/url]
    ## Ukraine
    #Server = [url]ftp://ftp.linux.kiev.ua/pub/Linux/ArchLinux/$repo/os/$arch[/url]
    #Server = [url]http://ftp.linux.kiev.ua/pub/Linux/ArchLinux/$repo/os/$arch[/url]
    #Server = [url]ftp://mirrors.mithril.org.ua/linux/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.mithril.org.ua/linux/archlinux/$repo/os/$arch[/url]
    ## United States
    Server = [url]ftp://archlinux.supsec.org/pub/linux/arch/$repo/os/$arch[/url]
    Server = [url]http://archlinux.supsec.org/$repo/os/$arch[/url]
    Server = [url]ftp://cake.lib.fit.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]http://cake.lib.fit.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirror.ece.vt.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]ftp://ftp.archlinux.org/$repo/os/$arch[/url]
    Server = [url]ftp://ftp.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch[/url]
    Server = [url]http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch[/url]
    Server = [url]ftp://mirror.ancl.hawaii.edu/linux/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirror.ancl.hawaii.edu/linux/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirrors1.kernel.org/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirrors2.kernel.org/archlinux/$repo/os/$arch[/url]
    Server = [url]ftp://locke.suu.edu/linux/dist/archlinux/$repo/os/$arch[/url]
    Server = [url]ftp://lug.mtu.edu/archlinux/ftpfull/$repo/os/$arch[/url]
    Server = [url]http://lug.mtu.edu/archlinux/ftpfull/$repo/os/$arch[/url]
    Server = [url]http://mirror.mocker.org/archlinux/$repo/os/$arch[/url]
    Server = [url]ftp://ftp.osuosl.org/pub/archlinux/$repo/os/$arch[/url]
    Server = [url]http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch[/url]
    Server = [url]ftp://mirror.rit.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirror.rit.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirrors.rutgers.edu/archlinux/$repo/os/$arch[/url]
    Server = [url]http://mirrors.lax1.thegcloud.com/arch//$repo/os/$arch[/url]
    Server = [url]http://mirror.yellowfiber.net/archlinux/$repo/os/$arch[/url]
    ## Uzbekistan
    #Server = [url]ftp://mirrors.st.uz/archlinux/$repo/os/$arch[/url]
    #Server = [url]http://mirrors.st.uz/archlinux/$repo/os/$arch[/url]
    /etc/pacman.conf:
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl %u > %o
    #CleanMethod = KeepInstalled
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [community]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    iwconfig:
    wlan0 IEEE 802.11bg ESSID:"default-g"
    Mode:Managed Frequency:2.462 GHz Access Point: 00:11:95:68:33:6A
    Bit Rate=1 Mb/s Tx-Power=20 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    Link Quality=66/70 Signal level=-44 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0
    pacman -S sudo:
    sudo package not found, searching for group...
    error: 'sudo': not found in sync db
    pacman -Syy:
    :: Synchronizing package databases...
    error: failed retrieving file 'core.db.tar.gz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    downloading core.db.tar.gz...
    error: failed retrieving file 'extra.db.tar.gz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    downloading extra.db.tar.gz...
    error: failed retrieving file 'community.db.tar.gz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    downloading community.db.tar.gz...
    pacman -Syu:
    :: Synchronizing package databases...
    error: failed retrieving file 'core.db.tar.gz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    downloading core.db.tar.gz...
    error: failed retrieving file 'extra.db.tar.gz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    downloading extra.db.tar.gz...
    error: failed retrieving file 'community.db.tar.gz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    downloading community.db.tar.gz...
    :: Starting full system upgrade...
    local database is up to date
    Note: both Syu and Syy from the console show the [######] 100% line, but won't output with >
    pacman -V:
    .--. Pacman v3.3.3 - libalpm v4.0.3
    / _.-' .-. .-. .-. Copyright (C) 2006-2009 Pacman Development Team
    \ '-. '-' '-' '-' Copyright (C) 2002-2006 Judd Vinet
    This program may be freely redistributed under
    the terms of the GNU General Public License.
    ping google.com:
    PING google.com (74.125.224.49) 56(84) bytes of data.
    64 bytes from 74.125.224.49: icmp_seq=1 ttl=55 time=18.3 ms
    64 bytes from 74.125.224.49: icmp_seq=2 ttl=55 time=21.8 ms
    64 bytes from 74.125.224.49: icmp_seq=3 ttl=55 time=18.4 ms
    64 bytes from 74.125.224.49: icmp_seq=4 ttl=55 time=16.8 ms
    64 bytes from 74.125.224.49: icmp_seq=5 ttl=55 time=18.3 ms
    --- google.com ping statistics ---
    5 packets transmitted, 5 received, 0% packet loss, time 4005ms
    rtt min/avg/max/mdev = 16.889/18.764/21.839/1.647
    Hope that helps. Thanks!
    Last edited by bananagranola (2011-08-08 05:23:33)

  • [SOLVED] ppp: pon seems to work, but ping doesn't

    Hi List,
    when trying to reinstall Archlinux from a CD, I get stuck in the very beginning of the process because I can't make the network connection work.
    The disk is already partitioned and formatted. I loaded the appropriate (de-latin1) keys, mounted root, boot and home partitions (/mnt/, /mnt/boot/ etc) and used swapon for the swap partition. I then copied from the backup of my old installation the /etc/ppp/peers/pppoe file, changed eth0  to enp0s7 (after doing an ifconfig), and set a symlink to this file called provider.
    Then calling pon on the commandline works as expected. However, if I ping www.google.com or so, I get the unknown host message. I believe the same setting worked for me with my former Archlinux install, and the internet connection works anyway - I'm using it for my labtop to write this message right now.
    Did I miss something? Is there some necessary config I forgot about?
    Here is the content of the pppoe file:
    plugin re-pppoe.so
    # network interface
    enp0s7
    # login name
    name "0123456789"
    usepeerdns
    persist
    defaultroute
    hide-password
    noauth
    Last edited by 4on6 (2013-12-07 18:06:48)

    brain0 wrote:
    Hm, a udev rule on the ISO is starting dhcpcd on ppp0, which it shouldn't. I don't know if this is your problem, but try
    systemctl mask [email protected]
    before launching pppd.
    I tried it, but it does not help.
    There are descriptions of how to configure pppoe, but I think I don't need(ed) to give all this specific information, all I had to do was adding a pppoe connection config file (/ppp/peers/pppoe shown above) with my phone number as user name - and the usepeerdns and noauth attributes made it unnecessary to give more info.
    From my (naive) point of view, these journal lines
    connected to ... via interface enp0s7
    Using interface ppp0
    Connect: ppp0 <--> enp0s7
    peer from calling number ... authorized
    seem to suggest that the connection config file cited above allows to establish a connection (or at least log in).
    But then
    LCP terminated by peer
    Timeout while waiting for PADO packets
    something I don't understand seems to go wrong.
    Or is the underlying problem that I forgot another config file or so? There is rp-pppoe.config too, and I changed ETH=eth0  to ETH=enp0s7, but to no avail. I could not change the user= ... settings in this file since I don't know what to put there for my provider (and if it is necessary at all).
    Or should I abort direct configuration of pppd and go for something like wvdial (which I don't know at all)?

  • [SOLVED] K7N2 Delta2-LSR Everything works but OpenGL Apps.

    Hello Folks.
    Interesting problem I have never run into before.  Recently upgraded to the K7N2 Delta2-LSR MB, and everything works great except for any opengl based application, which just crashes out.  But first a list of the system specs, then a detailed explaination of everything I have done.
    MB: K7N2 Delta2-LSR
    BIOS: Award vB.6 (11.6)
    CPU: AMD Athlon 1333Mhz (Don't know which core, sorry) 133MhzFSB x10
    RAM: (2) 256M DDR266 (No brand name, Samsung memory chips)
    (Dont have memory timings handy, but will get if needed. Using By SPD in bios)
    Video: Chaintek GeForce 6600GT (nvidia gefore 6600gt chipset)
    PSU: Logisys Computer PS 550A-BK 550w (+3.3v/30A +5v/38A +12v/25A)
    HDD: IBM 20GB IDE (Can get full on model if needed)
    Audio: Sound Blaster Audigy2 ZS Platiumn (removed during testing)
    OS: Windows 2000 SP4 (Fresh Install, latest MSI MB drivers from support site)
    Okay i think that is all the relavent system specs, if anyone needs more I will be happy to provide.
    Software used to test:
    Direct3D: Rose Online (game), dxdiag 3D tests
    OpenGL: Doom3 (game), Luna (nVidia Demo), Nalu (nVidia Demo), Dusk (nVidia Demo), Windows OpenGL screen savers
    The Issue:  OpenGL application crash during startup, normally in the nvoglnt.dll file.  System completely stable otherwise.  Windows 2D applications work fine.  Direct3D applications work fine.  I am using the latest stable nvidia drivers 84.21.  I have also tested with the following previous driver versions 81.85, 81.95, 81.98 and with the beta drivers 84.25, 84.43, 91.28, 91.31.  During this test I also used a MSI 6600GT card from a known good working system.  Putting the Chaintek in the working system, verified the card was good.  It worked no problem.  Putting the known good MSI card in place of the Chaintek in non-working system, OpenGL applications still crash.  I believe at this point I have ruled out both video card and drivers as a culprit.  I have a clean install of Win2K SP4 on the machine with latest MSI MB drivers.  I have also tested with a clean install of WinXP upgraded to SP2, with latest MSI MB drivers, Same Result.  The ram I have tryed in both Single and Dual channel modes.  I have removed one stick and ran the system with just 256MB ram.  I also swapped that stick with the other one per chance it was one of the ram sticks.  Though they had been running fine previously for years in the system without incident until the MB upgrade.  Also if I had bad ram I would expect to have general system instability across the board, not just opengl apps.  As a last resort I hung the HDD off my known good working system, even though it has an ASUS nForce2 chipset MB.  When it booted up,   All applications ran fine. DIrect3d and OpenGL.  At this point in the game I feel I have ruled out software and video drivers as the culprit.
    I've never really run into a problem like this before and am beginning to suspect that something is wrong with the motherboard itself.  I just wanted to bounce this issue off the brainpower here at the forums, before I contact the place I bought it from for an RMA.
    So I guess this all boils down to is, has anyone else ever had this issue and resolved it?  Or, does anyone have any other troubleshooting ideas I can try?  Thank you for all your time and consideration in this matter. 
    Kershoc

    Quote from: Richard on 09-June-06, 09:35:53
    BOSSKILLER,
    I agree but first we need to get APIC enabled with a Fresh Install of WinXP.
    Richard
    yes APIC must be enabled and OS installed after it. my reply was add-on after yours.
    Quote from: Kershoc on 09-June-06, 09:36:23
    Richard,
    The install is already on its way.  The XP install has an option for a quick format, so it's not as long as if I did a full one (thank goodness).  I've got a copy of memtest86 on one of my diag cd's around here.  I'll go ahead and let that run overnight when I go to bed.
    Bosskiller,
    It is BIOS version B6 aka 11.6.  It came on the board by default.  I dont recall seeing an Nvidia/ATI speedup option, but it may be one of those hidden ones you have to press a series of hotkeys to see, so I will check.     I will let you know more, once this reinstall is completed.
    yes Nvidia/ATI speedup option is hidden("SHIFT+F2","ALT+F3")
    "I'll go ahead and let that run overnight when I go to bed."
    hmm not good idea, couse that will take alot of time which is no need really, make 20 passes on Test Number 5 only in memtest, then leave SP2004 or Prime95 (Large'FFTs in Blends).
    But at all think there is not instability issues or you may have it but that is not couse the your problem. becouse instability is random, you are already running Direct3D base application and problems must exist there also if you have big instability, but that is not happend. if stress tests detected instability issues than will mean that you have more than one problem.

  • Need help: Apple TV / iPad airplay did work, but now does only partially.

    Until today, my iPad and iPod Touch have worked flawlessly with my Apple TV.  I've made no changes to any device or network settings, but now my iPad won't mirror or even play sound through my TV setup.   Strangely, my iPod still can.  Also, both devices can still control the Apple TV itself using the remote app.
    What happens is that the toggle. Switch flips back from Apple TV to IPad almost instantly.  A couple times I was able to get the mirroring toggle to stick and actually show up on the TV for a few seconds, but it never lasts and it will not accept the audio even for that second (whatever is playing pauses).
    I've rebooted the iPad and that hasn't helped.
    Ideas?

    Update:  the iPod WAS working with AirPlay, but it turns out to be intermittent.  Three consecutive attempts now when trying it the same thing happens:  for a moment the airplay icon will display blue, then it hangs a few seconds, the icon turns white again and the audio pauses.  Wile typing this it finally worked on the fourth attempt.

  • It worked, but now loads only halfway and then stucks..

    Hi, I have a shiny new 27" iMac (OS 10.8.2) and a iPhone 4 (iOS 6.1.2). I've already connected them successfully via Home Sharing, but out of a sudden, it doesen't work anymore. It loads halfway and then stucks
    Restarted all devices and the modem. At all other Apple products HS is turned off.
    It's a bit annoying, why has everything to be so difficult and time consuming

    Really NO ONE can help me with this issue...?

  • Looking for a reading App.  iPad (iOS 7.1.2) - Kindle.  I am looking for a good app that can help a college student with reading books that cannot be found on audio book. Voice over works, but monotone!

    Looking for a reading App.
    iPad (iOS 7.1.2) - Kindle.
    I am looking for a good app that can help a college student with reading books that cannot be found on audio book.  I have tried voice over and it works but it's very monotone and it really strings things together. 
    - I'm willing to pay for a good app but I can't seem to sort though the many that are out there. Any suggestions.

    Ah. I'm surprised, but there we go.
    Have a look here ...
    http://jam.hitsquad.com/vocal/about2136.html
    (courtesy of googling 'OSX free multitrack recording software')
    Didn't have time to do more than skim, but 'Ardour' looked promising. Protools is the only one I've used, the full product is one of the industry standards, but the free 'lite' version listed here seems to be limited to 2 in/out as well.
    Referring to your original post, I'd think trying to write or 'script' something would be a nightmare ... synchronisation of streams within something like Applescript would be a major issue, quite apart from anything else.
    G5 Dual 2.7, MacMini, iMac 700; P4/XP Desk & Lap.   Mac OS X (10.4.8)   mLan:01x/i88x; DP 5.1, Cubase SX3, NI Komplete, Melodyne.

  • BizTalk WCF service over SSL -WSDL is not working

    we are exposed BizTalk Schema as Service and deployed in both IIS servers.BTW IIS cluster working as a loadbalancer.
    First Question:
    The service is exposed over SSL and shared URL like https://DNSName/abc.svc.When they browse the URL with WSDL nothing is getting (i.e.https://DNSName/abc.svc?wsdl).
    Please help me why WSDL is not generating
    Second Question:
    Exposing service over SSL and in web.config making httpgetenabled=true and endpoint name="HttpMexEndpoint enabled.
    Then when we browse URL(i.e.https://DNSName/abc.svc) it displaying like http://ipadress/abc.service?wsdl.
    So when we click on http://ipadress/abc.service?wsdl ,the wsdl is generated.
    Why when we try http://DNSName/abc.service?wsdl ,wsdl not generated.
    Instead of  displaying IPAddress to end user, we want to display DNSName.how to do it?
    Regards BizTalkWorship

    Hi,
    For the problem of SVC file changing to WSDL when you bowse, this normally happens when "httpsHelpPageEnabled" property (in case of HTTPS as your case otherwise httpHelpPageEnabled) of you service is set to "false"
    in service's web.config file. When the help page option is set to "false" in the service's web.config file, this happens. Change it to  "true"
    <serviceDebug httpHelpPageEnabled="true"
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Cisco 3650 tacacs+ with SSH works, not for http to use wireless GUI

    Hi
    Last week I installed a brand new Cisco 3650 switch and the wireless option.
    Everything works fine.
    I also configured tacacs+. Login through SSH works fine.
    Now I want to manage the wireless part from the GUI bij entering https://ip-address/wireless
    Local authentication with priv 15 works fine.
    Now I configured tacacs. After entering username password I received a blank screen.
    After debugging, I got a SSl failed.
    Mar  4 07:35:53.675: eah:  url=/wireless is for us with a secondary connection
    Mar  4 07:35:53.675: eah: Secondary authentication required for realm priv_15_access
    Mar  4 07:35:53.675: Tue, 04 Mar 2014 07:35:53 GMT <source address> /wireless auth_required
            Protocol = HTTP/1.1 Method = GET
    Mar  4 07:35:53.675:
    Mar  4 07:35:53.799: %HTTPS: SSL read fail (-6992)
    Mar  4 07:35:58.400: eah:  url=/wireless is for us with a secondary connection
    Mar  4 07:35:58.401: eah: Secondary authentication required for realm priv_15_access
    Mar  4 07:35:58.401: HTTP AAA Login-Authentication List name: TACACS
    Mar  4 07:35:58.401: HTTP AAA Login-Authentication List name: TACACS
    Mar  4 07:35:58.401: TPLUS: Queuing AAA Authentication request 4673 for processing
    Mar  4 07:35:58.401: TPLUS: processing authentication start request id 4673
    Mar  4 07:35:58.401: TPLUS: Authentication start packet created for 4673(my username)
    Mar  4 07:35:58.402: TPLUS: Using server <tacacs server IP>
    Mar  4 07:35:58.407: TPLUS(00001241)/0/NB_WAIT/3AF752D4: Started 5 sec timeout
    Mar  4 07:35:58.449: TPLUS(00001241)/0/NB_WAIT: socket event 2
    Mar  4 07:35:58.450: TPLUS(00001241)/0/NB_WAIT: wrote entire 37 bytes request
    Mar  4 07:35:58.450: TPLUS(00001241)/0/READ: socket event 1
    Mar  4 07:35:58.450: TPLUS(00001241)/0/READ: Would block while reading
    Mar  4 07:35:58.511: TPLUS(00001241)/0/READ: socket event 1
    Mar  4 07:35:58.511: TPLUS(00001241)/0/READ: read entire 12 header bytes (expect 16 bytes data)
    Mar  4 07:35:58.511: TPLUS(00001241)/0/READ: socket event 1
    Mar  4 07:35:58.511: TPLUS(00001241)/0/READ: read entire 28 bytes response
    Mar  4 07:35:58.511: TPLUS(00001241)/0/3AF752D4: Processing the reply packet
    Mar  4 07:35:58.511: TPLUS: Received authen response status GET_PASSWORD (8)
    Mar  4 07:35:58.512: TPLUS: Queuing AAA Authentication request 4673 for processing
    Mar  4 07:35:58.512: TPLUS: processing authentication continue request id 4673
    Mar  4 07:35:58.512: TPLUS: Authentication continue packet generated for 4673
    Mar  4 07:35:58.512: TPLUS(00001241)/0/WRITE/3AFD3D3C: Started 5 sec timeout
    Mar  4 07:35:58.512: TPLUS(00001241)/0/WRITE: wrote entire 26 bytes request
    Mar  4 07:35:58.566: TPLUS(00001241)/0/READ: socket event 1
    Mar  4 07:35:58.566: TPLUS(00001241)/0/READ: read entire 12 header bytes (expect 6 bytes data)
    Mar  4 07:35:58.566: TPLUS(00001241)/0/READ: socket event 1
    Mar  4 07:35:58.566: TPLUS(00001241)/0/READ: read entire 18 bytes response
    Mar  4 07:35:58.567: TPLUS(00001241)/0/3AFD3D3C: Processing the reply packet
    Mar  4 07:35:58.567: TPLUS: Received authen response status PASS (2)
    Mar  4 07:35:58.656: HTTP: Priv level authorization success priv_level: 15
    Mar  4 07:35:58.690: %HTTPS: SSL read fail (-6992)
    Mar  4 07:35:59.096: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.096: eah: Not for us
    Mar  4 07:35:59.096: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.096: eah: Not for us
    Mar  4 07:35:59.096: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.096: eah: Not for us
    Mar  4 07:35:59.097: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.097: eah: Not for us
    Mar  4 07:35:59.097: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.097: eah: Not for us
    Mar  4 07:35:59.097: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.097: eah: Not for us
    Mar  4 07:35:59.097: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.097: eah: Not for us
    Mar  4 07:35:59.097: eah:  urlhook called for url=/favicon.ico
    Mar  4 07:35:59.097: eah: Not for us
    So authentication seems fine to me.
    Do I miss something in the ACS server?
    Configuration for ip http login:
    ip http secure-server
    ip http authentication aaa login-authentication TACACS
    ip http authentication aaa exec-authorization TACACS
    ip http authentication aaa command-authorization 15 TACACS
    Thanks!

    hi Erik,
    command auth is not supported for GUI for the IOS-XE boxes.
    Also can you try dong the following to check if this is a config issue.
    I see that you have  used TACACS as a method-list. Can you try using “default”?
    To use “default”, you need to maje the following changes.
    Aaa authentication login default  group  <server-grp>
    Aaa authorization exec default group <server-grp>
    On the http front, remove all the commands that you have configured below and only have this
    Ip http authentication aaa
    Can you paste the o/p of the folllowing commands?
    sh run | sec http
    sh run | sec aaa
    Does http work instead of https?

Maybe you are looking for

  • Print button on Form

    need to add a print button to the find users results form, To print the results... or any ideas on exporting the results would be also appreciated... Thanks in adv Nsankar

  • Rendering a JPanel over a JFrame

    Hello everybody, This is my situation: I have a JFrame extension (created in NetBeans' GUI Editor) that contains some JTextField objects and a JList object. The frame initializes, and then a SwingWorker thread accesses a remote server and downloads i

  • "Custom Sync" doesn't custom sync

    I am just getting to grips with a new aTV and have noticed there seems to be a glitch with the "Custom Sync" setting in iTunes. I want to use the aTV as the main music source in my hifi without needing to have my Mac and iTunes switched on (at least

  • HT4623 When I go to "Settings General", there is no option for "Software Update".  What do I do now?

    I am attempting to upgrade my iPhone OS from 4.2.6 to OS 5.  I followed the online directions, but when I go to "Settings > General", there is no "Software Update" option as they describe.  I need to upgrade the OS in order to use a credit card swipe

  • IOracle Security Alert for CVE-2012-1675 Released April 30th, 2012.

    Kinldy let me know how ill I down load the patch for this . Currently we have Oracle DB on versions 10.2.0.4, 10.1.0 , 11.2.0.3 in RAC. Do we need to apply the patch for all these databases. I have no applied any patches after Oracle is installed , C