Ubuntu :: Fan Speeds In Gkrellm Not Selectable
Apr 28, 2010
I can't get Gkrellm to show my fan speeds anymore since reinstalling Ubuntu.I have tried 9.10 and 10.04 and tried installing packages to maybe get the drop down to show up for fan speed but still nothing.I have installed Xsensors and that shows fan speeds correctly but I want to show them in Gkrellm like I used to have. Now every other temp gauge is working like it used to but the fan speed monitor.
View 7 Replies
ADVERTISEMENT
Jun 15, 2011
I run F15 on my desktop PC. I've run gkrellm on my desktop since FC5. This week I tried to add the gkrellm plugin gkrellm-freq via "Yum extender". The install appeared to be successful, but when I invoke gkrellm configuration gkrellm-freq does not appear on my list of gkrellm plugins. Also, gkrellm is not displaying the cpu frequency info.I use other gkrellm plugins (weather, sun) and they work fine.
[alfrugal@localhost ~]$ rpm -qa | grep gkrellm
gkrellm-weather-2.0.7-9.fc15.i686
gkrellm-freq-1.0-11.fc15.i686
[code]....
View 1 Replies
View Related
Feb 4, 2010
I have been trying to configure the mailcheck in gkrellm to check and notify for new mail on my gmail account. I have activated pop of course...
These are the pop info taken from gmail:
Quote:
Server for incoming mail (IMAP) - needs SSL: imap.gmail.com
Use SSL: Yes
Port: 993
Server outgoing mail (SMTP) - needs TLS: smtp.gmail.com (use verification)
Use verifiering: Yes
Use STARTTLS: Yes(some clients call this SSL)
Port: 465 or 587
View 1 Replies
View Related
Nov 29, 2010
I recently installed lubuntu 10.10 on my Toshiba nb205. Everything works out of the box but the sound is really quiet even at max volume. This is not my main concern though. I also have Windows XP installed on the same computer. The problem is, after I installed lubuntu 10.10, Windows XP no longer shows up as a selectable os when I turn on the netbook. I can access the windows XP partition correctly through lubuntu and everything seems ok, but I need to be able to boot from windows xp (unfortunately). Is there a way to redetect my OSes on the computer?
View 9 Replies
View Related
Jan 16, 2010
is it possible to edit Grub2 to hide the rectangular frame around the selectable OSes? Also, is it possible to hide the Grub 'title' ("Grub GNU 2 (1.97~beta4)" et cetera)?
View 1 Replies
View Related
Nov 3, 2010
I am having problems with my 3 dongle- when I connect it to my netbook it flashes green so it detects a 3G network. However there is nothing in network manager enabling me to choose the mobile broadband so I can't use it. I know there should be an entry "mobile broadband" after the wireless networks listed.
I know the dongle works because I have previously used it successfully- I was using Linux Mint 8 and have now updated to version 9 and when I have tried to use it have been unable to do so.
I have gone into the connections and my 3 connection is present but there is no way for me to select it in network manager.
View 9 Replies
View Related
Jun 26, 2010
I was just wondering if anyone had a mac-ish looking gkrellm theme. Ive got the Mac look going now, with global-menu and all the rest.
View 3 Replies
View Related
Jun 19, 2010
I'm trying to install the i8k plugin for gkrellm (for my dell) but i'm not seeing the package in the repositories. Does anyone have any information about this?
View 1 Replies
View Related
Dec 19, 2010
how to enable transparent themes on Gkrellm and KDE 4. AND ASK FOR HELP WITH A PROBLEM FURTHER DOWN THE PAGE. Libsensors is THE program for gathering sensor data for use in various applets. Some few (mostly older) sensors have their output sent to a system file, where it can be picked-up and used by the system, but the best way to get sensor data, especially for newer sensor chips, is directly from libsensor. Since 2007 libsensor support has been built out of Gkrellm in Ubuntu (perhaps all of Debian, though I'm unclear on that). From some cursory research on the internet, I discovered that in 2007 libsensors did a major update, and Gkrellm did not. Problems insued. Support for libsensors was dropped in Gkrellm. Even though a patch was produced fairly quickly, support for libsensors in Gkrellm was never re-allowed. There is a bug on this here.
To enable support for libsensors in Gkrellm you have to build Gkrellm from source (EGADS!!) It's really pretty easy with this package and mine went off without a hitch (and I now have WONDERFUL readouts from my atk0110 sensors on my asus mb.). You can find the source package for Gkrellm here, and you can find some easy instructions for building it here. Piece of cake (really!). Okay, on to invisibility.... Gkrellm invisibility doesn't happen in KDE 4 (without a little tinkering...). I discovered the fix by looking for insights in pages discussing the same problem in conky. I found a good one, and thinking the same situation might apply to gkrellm, I tried it and IT WORKED! Here's the original post. My gratitude to the author. I'm going to reproduce the process here for posterity's sake, and because the command has changed slightly with the location of the plasma-desktop-appletsrc file.
So, gkrellm uses fake transparency. It samples the desktop at its coordinates and reproduces the image as its background. Gkrellm doesn't use the user's desktop to sample from - it uses the root desktop image - hence the strange-looking colors I got whenever I tried one of the transparent themes. Okay, so first you need to make your current desktop image your root desktop image. To do this you need to install "feh" (copy and paste these commands into terminal)
Code:
sudo apt-get install feh
After that's done, enter this in terminal:
Code:
feh --bg-scale "`grep 'wallpaper=' ~/.kde/share/config/plasma-desktop-appletsrc | tail --bytes=+11`"
Okay, now it needs to be set-up so that it'll load automatically. The feh documentation recommends setting this in ~/.xsessionrc (if you don't have one, make one with kate - and don't forget the dot before the name [ the expression ~/ is shorthand for your home directory path, /home/username, so the aforementioned path in full would be /home/username/.xsessionrc ]):
Code:
`cat $HOME/.fehbg`
That done, we arrive at a problem. I could use some help here, if anyone has any idea how to fix it. It's not a deal-breaker, but it's definitely inconvenient if you like to change your wallpaper a lot. The feh program creates a file called ~/.fehbg to store the actual path of the image used as 'wallpaper'. Unfortunately, it stores it like this:
Code:
feh --bg-scale '/home/laysan/Pictures/shadows_1280.jpg_cropped.png'
The two single quotes enclosing the path are unfortunately read as part of the path, so when feh (or if it hands it off to bash or kde) looks for the image file it can't find it. You get a no such file error in feh. I created a bug report here. The only way I know of to fix it (I tried removing various sets of quotation marks from the original feh command to no avail) is to open the ~/.fehbg file in kate and remove the two single quotations, so it looks like this:
Code:
feh --bg-scale /home/laysan/Pictures/shadows_1280.jpg_cropped.png
But you must still do one more thing. You must change the permissions on ~/.fehbg to root, or the image's path will be overwritten the next time it's opened (at next login), with the single quotes included. Doing so fixes the issue in the short term, but when you change desktop images you'll have to reinstate your user privileges on the file, and re-run the original command to allow the file to be written to by feh (with the new image path), then edit the file again to remove the single quotes.
[code].....
View 9 Replies
View Related
Jan 13, 2011
GKrellM worked fine under 9.04.W/ 10.04 it works but does not sense the Fan or Voltage sensors.I transplanted the old folder over to /home after downloading GKrellM, hddtemp, and lm-sensors thru Synaptic.Ran the hddtemp and lm sensors in terminal w/ no problems.Running sensors revealed all inputs: cpu temps, fan speeds, andmobo voltages.GKrellM downloaded was ver 2.3.4 while my old folder data was 2.3.2. Sensor config file is same format just that the old config file has all the voltage/fan pointers assigned as well.
Weird thing is that GKrellM will overwrite the sensor-config file (that has ALL the sensor defined inputs pasted into it) after going into the program and selecting Configuration. It reverts to the sensor-config file created after running lm-sensors and hddtemp under 10.04.So it's autowriting itself and not picking up the fan/voltage inputs.Displaying the data thru the Sensor Applet in the Desktop panel is OK but I prefer having everything on GKrellM. It's a much cleaner, easy to view system. Anybody got a clue why GKrellM is overwriting the sensor-config file. That should be static, unlike the user-config file.
View 6 Replies
View Related
Feb 16, 2010
I have been trying to add more sensors for hdd drives temperatures but i see only one and no place/options to add more.I know they all work,(i have 4 physical hdd) if i use the hhdtemp command (dev/sdXX) it show the temp for all of them (one at time).
Any way to make gkrellm display all of them ?
I,ve been googling around and searching on various forums but haven't found anything about that (other than how to make it work,or troubleshooting to make it work).
I've tried conky ..but gives me more errors than info and i gave up.
View 8 Replies
View Related
Aug 28, 2011
This morning gkrellm updated from 2.3.4-1 to 2.3.5-2 and now the CPU temperatures aren't displayed. I've rerun sensors-detect and restarted module-init-tools, but the temperatures still don't display. If I run sensors from a terminal, the CPU core temperatures are displayed correctly. Has anyone else seen this?
View 2 Replies
View Related
Aug 11, 2010
gkrellm process starts automatically without me indicate. In auto-run system preferences kde is not configured to start automatically, set at the time but removed it and just beginning the process continues in the background
View 7 Replies
View Related
May 13, 2010
i was just wondering if there is a way to change the gkrellm text size, ^^ it's just its too little for me, i have to get closer to be able to see what graphic is what. so... is there a way to make the text bigger? a theme maybe?
View 2 Replies
View Related
Feb 10, 2011
i was wondering if it is possible to put gkrellm (system monitor with temp) inside of the top or bottom taskbar. my laptop overheats and i would like to be able to see my temps somewhere on my screen permanently. im sure there is a plugin or something of that nature i dont know about, if there is,
View 2 Replies
View Related
Jan 28, 2010
Was wondering if anyone else had a work around for not being able to change the sensor's "factor"? I need to divide the fan speed by 2, but I'm not able to change anything in the configuration.
View 3 Replies
View Related
Feb 10, 2011
Does anyone know of a way to change the network charts unit of measure in Gkrellm from bytes/sec to bits/sec? I'm not finding any method to do so in the config options.
View 1 Replies
View Related
May 7, 2010
problem is that no lower speeds available and ondemand do not work it always stays at 2 GHz even when maxing out all 4 cpu-s with something like Blender render for example?
10.04 on P35-DS3L motherb, CPU Q9300, mem 2GB.
View 1 Replies
View Related
Jun 29, 2010
I am using Ubuntu 10.04 and my internet works fine except for my download speeds. In Windows, downloading the same file, it downloads at around 200kb/s but in Ubuntu, it hovers around 20kb/s and never tops 50kb/s. Any idea how I can fix this because I really don't want to go back to Windows but I may have to.
View 2 Replies
View Related
Jul 15, 2010
I am new to Linux and have recently dropped Windows 7 (and windows all together for that matter) for Ubuntu 10.04.I love the look and feel of Linux and enjoy using it more over Windows. Despite this I am experiencing a serious problem which may cause me to revert back to Windows 7.I have a USB 3G modem: ZTE MF622 on the KKTCELL network.I have got this modem to work with wvdial and Gnome PPP, however i cannot get speeds over 60kb, Windows gives me well over 200kb.
I have tried a number of things but nothing has worked, it seems that no-one has posted a solution to this annoying conundrum.
View 7 Replies
View Related
Sep 1, 2010
I'm currently downloading some files using wget. According to wget, the download speed is 40-45K/s. But according to the System Monitor, I'm downloading at a rate of 80-100KiB/s. What can explain this contradiction in download speeds? I'm not downloading updates or anything like that: wget, so far as I can tell, is the only downloading.
View 2 Replies
View Related
Sep 3, 2010
I am running 2 gtx 480 gpu's. I got the fan to overclock on one of them by using "Option" "Coolbits" "5". But adding that to the second device section in xorg.conf doesn't produce any results in nvidia-settings. Would anyone be willing to post their xorg.conf if they have got this working?
View 1 Replies
View Related
May 3, 2011
Unfortunately my ubuntu installation wakes 31 seconds to get to the boot screen, almost identical to my windows 7 partition. I've already configured grub to my needs, so reducing the counter has already been done, but I have no idea what else to do for my boot speeds when it comes to ubuntu. If anything I can live with these times, but it would be very nice to have it boot at lightning speeds I may even buy a SSD when I get the money.
View 2 Replies
View Related
May 14, 2011
Recently I upgraded to 11.04 and I noticed the start up speed is much slower than when it was at version 10.
Back when I was running version 10 (10.04 and 10.10) I was running Ubuntu under Windows using wubi and my start up speed was about 9 seconds.
I no longer use Windows and have removed it, and now my boot speed is somewhere between 30 to 45 seconds.
Is this normal for a native Ubuntu installation? Or is 11.04 still buggy?
View 1 Replies
View Related
Jun 28, 2011
Hey guys, I got a new laptop, so I installed ubuntu 11 on my old laptop. And I have noticed the download speeds have been extremely slow.I have only been getting speeds around 20-60 kbs/sec before I installed ubuntu when it was running windows 7, I was getting around 100-300 kbs/sec. I know its not my internet, because my new laptop runnings windows 7 gets about 250-300.Any suggestions? Its not just in chrome or firefox, its especially slow when downloading packages.
View 7 Replies
View Related
Jan 10, 2010
Is there any way to tweak the torrent download speeds in ubuntu? i remember doing lots of things in utorrent when i was using windows. Like increasing max half open connections!! is there any equivalent settings for ubuntu? I am using qbittorrent as a torrent client.
View 4 Replies
View Related
Mar 12, 2010
I'm running ubuntu 9.10 64 bit on a Dell Latitude E6400 with the following configuration:
Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz, 3MB L2 Cache 1066 MHz
Intel Graphics Media Accelerator x4500HD
4GB RAM
250 GB Hard Drive SATA 7200RPM
I'm experiencing overheating problems, after just 15-20 minutes of minimal use (surfing the internet, not even watching flash vids or any other vids). The same laptop under Windows 7 64 bit stayed really cool.
I've read several posts here and followed this manual: [URL] to try to control the fans (I only installed the lm-sensors and ran the sensors command, I didn't do anything beyond that). Specifically what I did was install lm-sensors (via apt-get), ran sensors-detect which advised me to add the coretemp module to /etc/modules, which I did.
However when running sensors the only information I get is the overall temperature and the temperature of each of the cores.
why I'm not getting fan speed info when running sensors? Also is there a way to find out if more modules needs to be added to /etc/modules?
View 9 Replies
View Related
Mar 26, 2010
I just bought a 1Tb hdd and reformatted to FAT32 it is connected via eSATA to SATA cable.At first I transfered music that initially was getting speeds over 100mb/s (according to nautilus) after about a minute it started to dwindle. Now most files will range somewhere between 8-20mb/s although I've only seen a couple go beyond.i edited hdparm.conf to enable DMAHere is the output of hdparm -Tt for both internal(sda) and external(sdb) hardrives.
Code:
/dev/sda:
Timing cached reads: 14872 MB in 2.00 seconds = 7444.68 MB/sec
Timing buffered disk reads: 372 MB in 3.00 seconds = 123.91 MB/sec[code]....
What is the issue this output leads me to believe that I should be getting the same speed I once got.I'm running Intel Core 2 duo at 3.00, ASUS P5Q (enabled AHCI) and 4gb ram 12gb linux swap. Also Karmic 9.10
View 1 Replies
View Related
Apr 10, 2010
I'm finding that the internet speed in Ubuntu 10.04 is over twice as slow as the speeds that I am getting in Windows 7.I've tried disabling IPv6 through Grub and Firefox but it didn't really help much.. anything else I can try?Connecting through wireless at 54 Mbps.
View 2 Replies
View Related
Jun 27, 2010
I recently installed Ubuntu Lucid an my Celeron 2.4 Ghz laptop but for some reason I find it slower than Ubuntu Jaunty which is on my Pentium 4 3.00Ghz desktop (especially Gdebi Package Installer. Could this be because of the different processing speeds of the processors, or just Ubuntu 10.04 or because Jaunty has been updated so many times and Lucid is still quite new. It is not just slower, much slower.
View 4 Replies
View Related