Archivado como linux, ubuntu por josepcoves | 0 comments
Hola, posteo mi xorg.conf después de haberlo configurado durante meses. Entre ellos he conseguido solucionar los problemas relacionados con Compiz y los problemas de vídeo, los problemas de segmentation fault por culpa del display, etc.
El fichero está configurado para la última versión del driver de ATI 8.12 (aceleradora HD 3400) y portátil vaio FW11M.
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Default Screen" 0 0
InputDevice "Synaptics Touchpad"
EndSection
Section "Files"
EndSection
Section "Module"
EndSection
Section "ServerFlags"
Option "Xinerama" "off"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "es"
Option "XkbOptions" "lv3:ralt_switch"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "true"
Option "HorizEdgeScroll" "0"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
DisplaySize 423 238
# DisplaySize 541 304
EndSection
Section "Device"
Identifier "Configured Video Device"
Driver "fglrx"
Option "Centermode" "on"
Option "TexturedVideo" "off"
Option "VideoOverlay" "off"
Option "OpenGLOverlay" "off"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Configured Video Device"
Monitor "Configured Monitor"
DefaultDepth 24
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSection
Archivado como SAP por josepcoves | 0 comments
The file names that you use in ABAP statements for processing files are physical names. This means that they must be syntactically correctfilenamesfor the operating system under which your SAP system is running. Once you have created a file from an ABAP program with a particular name and path, you can find the same file using the same name and path at operating system level.
Since the naming conventions for files and paths differ from operating system to operating system, ABAP programs are only portable from one operating system to another if you use the tools described below.
To make programs portable, the SAP system has a concept of logical filenames and paths. These are linked to physical files and paths. This link is defined in special tables. You can define these tables in accordance with your requirements. In an ABAP program, you can then use the function module FILE_GET_NAME to generate a physical filename from a logical one.
Maintaining platform-independent filenames is part of Customizing. For a full description, choose Tools ® Business Engineer ® Customizing , followed by
Implement. projects ® SAP Reference IMG . On the next screen, choose Basis Components ® System Administration ® Platform-independent File Names.
For a more detailed description of the function module FILE_GET_NAME, enter its name on the initial screen of the Function Builder and choose Goto ® Documentation . On the next screen, choose Function module doc.
Another way of maintaining platform-independent filenames is to use the Transaction
FILE. For information about platform-dependent filenames , refer to the
Platform Independent Filename Assignment section of the Extended Applications Function Library documentation.
Archivado como SAP por josepcoves | 0 comments
Transacciones para tratar ficheros en SAP
FILE: Para asignar nombres lógicos a ficheros físicos
(dentro del servidor)
AL11: Acceder al sistema de ficheros de SAP (servidor)
Función ABAP: OPEN DATASET (para abrir un fichero).
Archivado como ASP, Networking, web por josepcoves | 0 comments
El otro día me encontré con este error (An error occurred on the server when processing the URL. Please contact the system administrator.) al intentar entrar en una página desarrollada en ASP. Curiosamente este error solamente se producía con firefox mientras que con IE la página funcionaba correctamente. Dado que la página a la que quería acceder era la de una entidad bancaria y sabiendo la poca seguridad de la que gozan los entornos windows, antes de abrir la página en Windows y exponerme a miles de troyanos, decidí investigar un poco para encontrar otra solución para poder ejecutar dicha página desde linux y con firefox.
Después de navegar un rato encontré la solución. Para aquellos que tengáis el complemento firebug instalado en vuestro firefox, debéis desactivarlo para quitaros de encima este error. Después de desactivar firebug la página se mostró perfectamente.
Espero que os sirva!