e17

10 bejegyzés megtekintése - 11-20 / 85
  • Szerző
    Bejegyzés
  • #2006085
    Wordan
    Felhasználó

      Nekem sikerált Mandriva alá mûködik is rendesen, csak a konfig része nincs még eléggé kész és baromi körülményes bármit is beállítani rajta.
      Amúgy a get-e.org-on a magyar leírásban „kicsit” össze van keverve a libek fordítási sorrendje, valahol el is akadtam benne emiatt, de megnéztem az angolt és úgy kifogástalanul felment.
      Amúgy csicsa tekintetében sztem verhetetlen (animált háttérkép rúlz)  -_-

      #2006086
      KOXX
      Felhasználó

        most e szerint a leírás szerint próbáltam telepíteni az e17-et http://enlightenment.freedesktop.org/ és megcsinálom az eet, evas, ecore, embryo, imlib2 és edje konfigurálását, forgatását, telepítését, de az enlightenment a make parancsra félúton megakad és ezeket kapom vissza:

        /usr/local/bin/edje_cc: Warning. Cannot open file ‘../../data/themes/default_entry.edc’
        make[4]: *** [default.edj] Error 255
        make[4]: Leaving directory `/root/Desktop/1/enlightenment-0.16.999.015/data/themes’
        make[3]: *** [all-recursive] Error 1
        make[3]: Leaving directory `/root/Desktop/1/enlightenment-0.16.999.015/data/themes’
        make[2]: *** [all-recursive] Error 1
        make[2]: Leaving directory `/root/Desktop/1/enlightenment-0.16.999.015/data’
        make[1]: *** [all-recursive] Error 1
        make[1]: Leaving directory `/root/Desktop/1/enlightenment-0.16.999.015′
        make: *** [all-recursive-am] Error 2

        mit lehet ez ellen tenni?

        #2006087
        KOXX
        Felhasználó

          végül is megoldódott azzal hogy letöltöttem 1 régebbi release-t, így már minden jó :mellow:

          #2006088
          KOXX
          Felhasználó

            nem tudja vki hogy lehet mûködésre bírni a CPU hõmérõt és a frekvencia mérõt? be vannak kapcsolva csak nem mérnek

            #2006089
            zygy
            Felhasználó

              Hali! Felraktam az Enlightenment-et nagyon tetszik (de sajna még nem tökéletes..), és szeretném beüzemelni  az engage nevû display manager-t hozzá. Hogy azon tudjak bejelentkezni akár kde-be akár e17-be. Suse 9.3-at használok.
              Az nem mûködött hogy a etc/sysconfigba DISPLAY_MANAGER bejegyzéshez beírtam hogy ‘engage’  se ugy hogy ‘engaged’ (ez az indító skript neve, ami el is indítja ha runlevel 3-ból indítom).
              Valaki tudna segíteni, hogy ezzel a dm-mel induljon a linux?
              Elöre is thx…
              ui.:szétnéztem a gugliba is itt is… bocs ha nem jól.  😀

              #2006090
              sevi
              Felhasználó

                engage?  :blink:
                Az engage egy alkalmazásindító/tálca program és modul az e17-hez. Az e17 dm-je az entrance… úgyhogy „entranced”-et kéne beírni szerintem 🙂

                #2006091
                unranked
                Felhasználó

                  Na én is emergeltem az e17-et 🙂
                  Húú az e16-hoz képest kicsit jobb 🙂
                  Sajnos elég hamar sikerült segfault-ot okoznom 🙁 A parancsvégrehajtáshoz akartam másik billentyût rendelni, de mindkét probálkozásomat egy segfault-al jutalmazta. Ettõl eltekintve szerintem nagyon lenyûgözõ. Az XGL elbújhat mellette 😛 (persze csak vicceltem, majd a kettõ együtt!! Parasztvakítás ezerrel 😀 )
                  A fájlkezelõje is nagyon rendben van. Az zavar egy picit, hogy nincs benne alkalmazás menü, vagy csak én nem találtam…

                  Keresgéltem az oldalán, hogy kb mikor lesz stabil. Amennyire kivettem a szövegbõl, ez egy darabig még várat magára.

                  #2006092
                  Deus
                  Felhasználó

                    Hi!

                    Van már olyan személy aki működésre tudta bírni a hőmérőt, cpu-frek kijelzőt és a többi széria kütyüt? 🙂
                    Ha igen, azt hogy csinálta?

                    #2006093
                    Deus
                    Felhasználó

                      Akkor a kérdésemre a válasz (hátha van még vki aki keresi):

                      Howto Install and Configure lm-sensors
                      ========================

                      1. Install lm-sensors using apt-get or the Synaptic GUI.

                      sudo apt-get install lm-sensors

                      2. Run the mkdev.sh script in the lm-sensors source. It is extacted below:

                      a. Copy the script file below to a text editor and save it to a file named mkdev.sh.

                      #!/bin/bash

                      # Here you can set several defaults.

                      # The number of devices to create (max: 256)
                      NUMBER=32

                      # The owner and group of the devices
                      OUSER=root
                      OGROUP=root
                      # The mode of the devices
                      MODE=600

                      # This script doesn’t need to be run if devfs is used
                      if [ -r /proc/mounts ] ; then
                      if grep -q „/dev devfs” /proc/mounts ; then
                      echo „You do not need to run this script as your system uses devfs.”
                      exit;
                      fi
                      fi

                      i=0;

                      while [ $i -lt $NUMBER ] ; do
                      echo /dev/i2c-$i
                      mknod -m $MODE /dev/i2c-$i c 89 $i || exit
                      chown „$OUSER:$OGROUP” /dev/i2c-$i || exit
                      i=$[$i + 1]
                      done
                      #end of file

                      b. Make the file executable:

                      chmod 755 mkdev.sh

                      c. Run mkdev.sh from the current directory

                      sudo ./mkdev.sh

                      3. Now run sensors-detect and answer YES to all YES/no questions. I generally use the ISA bus rather than the SMBus bus, your choice to this question!. At the end of the detection phase, a list of modules that needs to be loaded will displayed. You will need to write these down or print the list for the next steps.

                      sudo sensors-detect

                      Below is an example of results from sensors-detect:
                      #************************************************* *****************************
                      To make the sensors modules behave correctly, add these lines to
                      /etc/modules:

                      #—-cut here—-
                      # I2C adapter drivers
                      i2c-viapro
                      i2c-isa
                      # I2C chip drivers
                      eeprom
                      it87
                      #—-cut here—-

                      Then, run /etc/init.d/module-init-tools

                      To make the sensors modules behave correctly, add these lines to
                      /etc/modprobe.d/local and run update-modules:

                      #—-cut here—-
                      # I2C module options
                      alias char-major-89 i2c-dev
                      #—-cut here—-
                      #************************************************* *******************************

                      4. In this example, we add the modules in reverse order (order is critical!) in „/etc/modules”.

                      #************************************************* ***********************
                      # /etc/modules: kernel modules to load at boot time.
                      #
                      # This file should contain the names of kernel modules that are
                      # to be loaded at boot time, one per line. Comments begin with
                      # a „#”, and everything on the line after them are ignored.

                      psmouse
                      mousedev
                      ide-cd
                      ide-disk
                      ide-generic
                      lp

                      #For lm-sensors, i2c modules
                      it87
                      i2c-viapro
                      i2c-isa

                      #end of file!
                      #************************************************* ****************

                      4. I found that there was no „/etc/modprobe.d/local” and that „alias char-major-89 i2c-dev” was already listed in „/etc/modprobe.d/aliases”. So, nothing to do here.

                      5.Now load the modules manually using modprobe and update the dependencies.

                      sudo modprobe i2c-sensor
                      sudo modprobe i2c-viapro
                      sudo modprobe i2c-isa
                      sudo modprobe it87

                      ((ezekre nem baj ha hibát ad vissza, nekem müxik úgy is, h nem találta ezeket) A szerk)

                      sudo depmod -a
                      sudo update-modules

                      6. Now test the sensor output using the lm-sensors utility „sensors”.

                      sensors

                      ************************************************** *****************
                      it87-isa-0290
                      Adapter: ISA adapter
                      VCore 1: +1.57 V (min = +1.42 V, max = +1.57 V) ALARM
                      VCore 2: +2.66 V (min = +2.40 V, max = +2.61 V) ALARM
                      +3.3V: +6.59 V (min = +3.14 V, max = +3.46 V) ALARM
                      +5V: +5.11 V (min = +4.76 V, max = +5.24 V)
                      +12V: +11.78 V (min = +11.39 V, max = +12.61 V)
                      -12V: -19.14 V (min = -12.63 V, max = -11.41 V) ALARM
                      -5V: +0.77 V (min = -5.26 V, max = -4.77 V) ALARM
                      Stdby: +5.00 V (min = +4.76 V, max = +5.24 V)
                      VBat: +3.12 V
                      fan1: 3668 RPM (min = 0 RPM, div = 😎
                      fan2: 0 RPM (min = 664 RPM, div = 😎 ALARM
                      fan3: 0 RPM (min = 2657 RPM, div = 2) ALARM
                      M/B Temp: +39°C (low = +15°C, high = +40°C) sensor = thermistor
                      CPU Temp: +36°C (low = +15°C, high = +45°C) sensor = thermistor
                      Temp3: +96°C (low = +15°C, high = +45°C) sensor = diode
                      ************************************************** ********************

                      7. Reboot your system and the sensors should now be detected during the boot process properly!

                      8. The sensor output may be tweaked by editing the „/etc/sensors.conf” file. It is possible to correct inacurate scaling too. For details check „man sensors.conf.

                      #2006094
                      kisbetu
                      Felhasználó
                        Deus wrote:
                        Hi!

                        Van már olyan személy aki működésre tudta bírni a hőmérőt, cpu-frek kijelzőt és a többi széria kütyüt? 🙂
                        Ha igen, azt hogy csinálta?

                        Jó, a hőmérőt láttam.
                        Hol van a „cpu-frek kijelző” és a „széria kütyük”?

                      10 bejegyzés megtekintése - 11-20 / 85
                      • Be kell jelentkezni a hozzászóláshoz.