Ubuntu :: Determining Which Window Is Being Moved

May 10, 2010

I have a script I only want to run when a window is being dragged around. Is there an environmental variable or something that will tell me whether one is moving and which one it is? I'm using Ubuntu Lucid if it matters.

View 9 Replies


ADVERTISEMENT

Ubuntu :: Window 3 Icons (close, Min & Max) Moved To The Left?

May 1, 2010

just upgraded to 10.04 - everything seems to be working OK apart from the 3 icons (close, min & max) have moved to the top left of the windows.

View 4 Replies View Related

OpenSUSE :: Auto Resize Window When Moved To The Sides ( KDE )?

Apr 7, 2010

I used linux for a long time now, mostly ubuntu-based distros but these days I decided to try openSUSE. Must say, It is a really nice distro, with lots of new features. There is one that I never seen before but I admit it is very useful: the auto resize window feature. I use the 11.3 (KDE) (milestone 4) version. Just wanted to ask if this is a package for ths or is hard-coded into the system? And is it KDE-specific?

View 2 Replies View Related

Networking :: Determining Inbound Vs Outbound

Mar 14, 2011

Looking at the output of netstat, I'm not seeing a definitive way to tell which torrent connections are clients reaching in to my machine vs my machine reaching out to the world. Is there a clear way to determine which is which?

View 1 Replies View Related

Ubuntu Installation :: Upgrade To 11.04 Failed Determining System State?

Jul 16, 2011

I ran the 11.04 upgrade. At the end, it reported a failure, implied a recovery would occur and the upgrade then finished. The recovery was supposed to have run sudo dpkg --configure -a. That does not appear to have happened. I am concerned that a reboot will render my system inoperative.Has anyone else experienced a similar issue or have any suggestions? What information should I provide. report.

View 2 Replies View Related

Networking :: Manually Determining Ip Address Ranges?

Sep 8, 2009

I am trying to remember the procedure used to determine the ip address range when given a network address and its subnet mask. Does anyone have any documentation on the steps that are done to accomplish this?

View 6 Replies View Related

Networking :: Multiple NIC's And Determining The Correct Interface?

Feb 8, 2010

I have two NIC cards installed, they both go to seperate networks. Occassionally I am not able to establish a connection via eth1. When looking at tcpdump traces I see that Linux is using eth0 hardware port and putting eth1's IP address in the packet to reply to the connection request. When the connections work its when Linux uses eth1's port.

View 3 Replies View Related

Ubuntu Servers :: Determining The Source Of Outgoing Requests To Suspicious IP Addresses

Oct 26, 2010

My Firestarter logs show periodic outgoing connection attempts to IP addresses in countries such as Malaysia, China, Russian Federation etc... Fortunately, Firestarter appears to be blocking them. I suspect these are not good and want to find out exactly what process is initiating these outgoing connections.

View 6 Replies View Related

General :: Windows In Determining Drives-drive Letters?

Nov 25, 2010

Using a Linux program to fix my TiVo. Program is burned to a bootable CD, which loads fine. I get asked what the drives are (CD and Hard Disk) with abbreviations like hda, sda, etc. I was able to determine the Hard Drive as /dev/sda, by using <Shift>-PgUp/PgDn, but could not find what the CD drive was.

View 1 Replies View Related

General :: Determining Network Status On Abbreviated System?

May 24, 2011

I have and embedded system which apparently, due to space considerations, is missing lots of normal commands. I can get the following information by "cat /proc/version":

Linux version 2.4.19-uc0 (...) (gcc version 2.95.3 20010315 (release)(ColdFire patches - 20010318 from http://fiddes.net/coldfire/)(-msep-data patches)) #461 Tue May 24 12:06:06 PDT 2011

At issue is the fact that, after some time, the system stops responding to the Network (e.g., you can ping it, then some time later you can't). We suspect that some sort of network monitor is accessing the device and causing the trouble, but don't know for sure.

What I would like to do is log some sort of useful network status information and/or be able to reset the network if I can figure out there is an issue from within the device.

I thought I had it all working using "/etc/init.d/network restart" but I've come to find out that the command is not recognised in this system. I also can't issue a "top" command to see what services are running. I can Telnet in, so I can try commands and see if they work.

Have any of you worked with such an abbr. system and if so, what might be around that I'm unaware of to help determine network status?

View 3 Replies View Related

Software :: Determining GCC / Binutils And Glibc Version Compatibility

Apr 4, 2010

This questions pertains mainly to building a brand new GNU toolchain on one machine for deployment on fs of another machine that has no toolchain installed. I understand the machine on which GNU toolchain is going to be built as the 'build' machine. I understand the machine on which GNU toolchain is going to be deployed as the 'host' machine. I understand the machine on which the code generated by the new GNU toolchain is going to be run as the 'target' machine.

Q1.) Is there a fixed 'rule', 'matrix' or 'table' somewhere which tells me exactly which versions of 'binutils' and 'libc' are required by a particular version of GCC? I.e. something along the lines of:

- gcc ver.'k' can be built using gcc ver.'m'(or later) with binutils ver.'i' and libc ver. 'j'
- gcc ver.'k' will operate with binutils ver.'t' and libc ver.'r'(or later)

Is there some 'rule of thumb' / 'heuristics' giving me the above version requirements for the building and operating GCC, or is this information somehow implied or derived systematically. Where can I find more about the above?

Q2) I assume that the libraries have no dependencies on any underlying software other than the system calls provided by the kernel. Furthermore it appears that the libraries are not too sensitive about the kernel version they run on (I found this out from experience). Therefore I could build the libraries on some build machine and place them on the bare naked newly set up host file system without regard to any other prerequisite SW components?

Q3) During operation, do GCC and its various components place system calls directly to the kernel or via library calls (or both)? In other words I am trying to understand conceptually if GCC requires 'Glibc' for its own operation or not?

Q4) During operation, do the 'binutils' components place system calls directly to the kernel or via library calls (or both)? In other words I am trying to understand conceptually if the 'binutils' require 'Glibc' for their operation or not? ( Of course it is clear to me that when GCC is operating it will need libraries and headers to resolve object references in the target code it produces, but that would be a >different< question).

View 5 Replies View Related

Programming :: Determining Python Font Pixel Size?

Feb 17, 2010

I am trying to scroll text from a text file across a wx.panel. This is the code so far:

Code:
def scrolling(self, text, rate):
def scroll(): charList = []
dc = wx.ClientDC(self.panel_1)
open_text = open(text, "rb")
my_text = open_text.read()
charList.append(my_text) open_text.close()
x,y = self.panel_1.GetClientSizeTuple()
while 1: for z in charList: for r in range(2000):
dc.DrawText(z,x-r,0) time.sleep(rate) dc.Clear()
net3 = threading.Thread(target=scroll)
net3.setDaemon(1) net3.start()

It scrolls but I am guessing where the range is (2000). I need to be able to determine the total number of pixels that the text in the file is. Is there a python way to determine this?

View 1 Replies View Related

CentOS 5 Networking :: Fails At Determining IP Information For Eth0?

Oct 7, 2009

I have been running into network issues lately with my CentOS 5 (installed on AMD Athlon X2 - 64 bit machine about 2 years ago). It was able to connect to the network fine until yesterday when I installed more memory into the machine restarted it.

Upon restart, the boot up was paused at 'Determining IP information for eth0' step for a while and booted with out connecting to the network. I tried restarting the network (/sbin/service network restart), but this is the error message I continuously get: Determining IP information for eth0...PING xxx.1.226.1 (xxx.1.226.1) from xxx.1.226.83 eth0: 56(84) bytes of data

[Code]...

View 2 Replies View Related

CentOS 5 Networking :: Another Determining IP Information For Eth0... Failed?

Apr 1, 2010

I've seen this pop up a few times on the forum but my setup is slightly different. I have a PC with an ASUS P5N32-SLI Premium motherboard. I've just installed CentOS 5.1. Yes, I know this is ancient, but this is what they're developing on at work. I'm trying to get connected either via ethernet or wireless and neither one works. When I boot the computer to Window XP it does connect on ethernet. Ethernet should be easy so I'm concentrating on that. But I get "Determining IP information for eth0... failed." after a 'service network start'.Here is some other information that was asked on similar threads:

> uname -rmi
2.6.18-53.el5 x86_64 x86_64
> grep eth0 /etc/modprobe.conf

[code]....

View 4 Replies View Related

Software :: Dynamically Determining The Number Of Check List In Zenity?

Apr 29, 2009

In my project i cannot determine the number of check list initially. I will know dynamically during execution.How to specify the number of check list dynamically in zenity.

View 5 Replies View Related

Server :: Determining System Limits Affecting Apache - Specifically RLimitMEM

Mar 15, 2011

Our Apache server is pretty much configured straight out of the box, and I've noticed it is using far more CPU and less memory than another server where I have the following:

RLimitCPU 8
RLimitMEM 100000000
RLimitNPROC 24

The Apache documentation says that if these aren't set, the values are obtain from the OS. How can you tell what those are? I'd like to see if I can tune Apache's performance, but I don't even know if these values are higher or lower than what it's currently using...

View 5 Replies View Related

CentOS 5 Networking :: Determining IP Information For Wlan0...SIOCSIFFLAGS: No Such File Or Directory

Oct 18, 2009

i wanted to learn linux, so i just installed Centos on a thinkpad x200. my wireless will not work. when i try to activate it i get this error:

Determining IP information for wlan0...SIOCSIFFLAGS: No such file or directory
SIOCSIFFLAGS: No such file or directory
# lspci
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)

[code]....

View 5 Replies View Related

CentOS 5 Networking :: Fails At Determining IP Information For Eth0 (onboard NIC Asus P6T On Centos 5.3)?

Apr 28, 2009

I'm running a fresh install on an intel i7 system on an asus p6t deluxe v2 motherboard with the onboard NIC (Marvell Technology pci-e). I know the NIC is working as when I boot into the onboard OS that Asus provides (Asus Express Gate SSD)I have a working net connection.Booting up CentOS hangs at determining IP information for eth0 and eventually fails with the following error:PING xxx.170.30.1 from xxx.170.31.231 eth0: 56(84) bytes of data---xxx.170.30.1 ping statistics ---4 packets transmitted, o received, +3 errors, 100% packet loss, time 2999ms, pipe 3 failed.

RTNETLINK answers: file exists.
RTNETLINK answers: file exists.
RTNETLINK answers: file exists.

[code]....

View 14 Replies View Related

Hardware :: "lspci -v" / Determining Video Memory?

Dec 29, 2010

The box my video card came in says "1 GB DDR3" But when I run "lspci -v" I get this:

Code:

01:00.0 VGA compatible controller: nVidia Corporation G92 [GeForce GTS 250] (rev a2) (prog-if 00 [VGA controller])
Subsystem: eVga.com. Corp. Device 1145
Flags: bus master, fast devsel, latency 0, IRQ 18

[code]....

EDIT:I read this somewhere:"The amount of memory lspci shows is only the amount of memory mapped directly to the PCI bus. So, both your CPU and GPU can "see" 256 MB, but only the GPU can access the rest directly."What I'm wondering is, I'm setting up wine in "regedit". I'm adding this string:

"VideoMemorySize"="xxx" to this key: HKEY_CURRENT_USERSoftwareWineDirect3D So what do I put? 1024 or 256?

View 1 Replies View Related

Ubuntu :: Can Notifications Be Moved

May 9, 2011

In ubuntu Natty with the notification pop ups like for when the song changes in Banshee, they are in my top right corner. Is there anyway to move them?

View 3 Replies View Related

Ubuntu :: Icons In The Taskbar Moved?

Jan 14, 2010

I hooked up my computer to a TV via VGA and after I was done my icons moved around on the taskbar. Usually the 'kevin' was on the far right. Is there a way to change it back?

View 1 Replies View Related

Ubuntu :: File Can't Be Moved To Trash

Feb 21, 2010

why a file can't be moved to trash while it can be deleted forever!! does any of you have a clue?

View 1 Replies View Related

Ubuntu Networking :: Since Moved Can't Get To Web Server

Apr 7, 2011

I have recently moved. I was on a comcast Internet system and had the Server working there. I have moved to where I am on a different server. I have been issued a static IP address. I have configured my Linksys server to reserve an address for my Ubuntu Web Server. When I try to get to my web site the connection times out not getting there. I remembered I had to forward some services, ports over to the reserved IP address for the server. I can't for the life of me remember the ports I forwarded. how to get this forwarding done. Or what else might be keeping me from seeing my webpate - [URL]?

View 3 Replies View Related

Ubuntu :: Moved /home And Now Cannot Start?

May 16, 2011

ubuntu 10.04 Easy Peasy eeepc 900I have messed up my home directory and can not get out of the messI wanted to move the /home to be on the 16gb partition instead of the default which was on the 4gb with the installation. I copied/saved /home to a temporary directory and then moved the contents of /home to the 16gb disk and mounted it on /home At this stage all seemed to be working correctly and applications worked as before. However when I rebooted it can not find my home directory, complains a lot, and if you bypass the messages ends up with a minimal GUI screen which does not respond to anything I tried. It seems that the 16gb disk is not being mounted.

View 4 Replies View Related

Ubuntu :: Moved A VM Server Now VMs Can't Talk

Jun 18, 2010

I'm running Ubuntu 9.10 AMD64 with KVM and several VMs running the same OS. Everything was running fine and the VMs were using the host's network via bridging. The decision was made to move the server to completely different network. I shut it down, the system was moved and hooked up, and I got it up on the new network pretty easily--just modified /etc/network/interfaces and /etc/resolv.conf. No networking problems at all.

Then I fired up virt-manager, powered up one of the VMs, and made the same kinds of changes. It's not talking beyond the VM server. I can ping the host, but can't ping the gateway. "tcpdump -i eth0" shows plenty of traffic.

View 4 Replies View Related

Ubuntu :: Apt-cacher-ng Error: 302 Moved Temporarily

Mar 14, 2010

I've been attempting to install Virtualbox 3.1 on my desktop using the "Add and Remove Software" facility. All attempts result in failure with the "Details" error message box issuing

Quote: Failed to fetch [URL]...armic_i386.deb 302 Moved Temporarily [IP: ::1 3142] I have recently freshly installing Karmic and apt-cacher-ng after a disk crash. I was running Hardy and apt-cacher previously. I successfully installed Virtualbox 3.1 on my laptop through apt-cacher-ng on the desktop machine. However, I now realise that I had neglected to change the entries in /etc/apt/sources.list on my laptop from

[Code]...

View 9 Replies View Related

Ubuntu Installation :: Moved Root To Xfs Lv And Having Expanding?

Mar 23, 2010

Although I've been dabbling for a while I'm somewhat of a newbie so bear with me: Rather than rebuild my Hardy Server due to root being full, I followed suggestions to create another logical volume on the volume group and put root there. I must have missed some fundamental step. Although the partition appears to be functional, the defined space isn't visible and I am stumped:

$sudo df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/vg--server1-lv--root
4582064 4533388 0 100% /
varrun 1895524 248 1895276 1% /var/run
varlock 1895524 0 1895524 0% /var/lock

[Code]...

View 2 Replies View Related

Ubuntu :: Network Manager Moved To The Right Corner By Itself?

Aug 15, 2010

I logged on one day and somehow my network manager aplet just moved to the right side of my panel all the way over

View 5 Replies View Related

Ubuntu :: Movieplayer Redraws Crazy When Moved

Aug 26, 2010

Something seems to be wrong with the form redraw. When I open a movie in movieplayer, it looks Ok until I try to resize the window or move it. Then it draws crazy, repeats elements in the form, and kills the movie image. You can still hear it, but it's black. Something is up with the software that draws apps on the screen. Have you seen this or have an idea what might be going on?

View 2 Replies View Related

Ubuntu :: Min / Max / Close Buttons Moved After Update?

Jan 12, 2011

after i udated to ubuntu 10.04LTS, i applied updates one night and after reboot the minimize, maximize and close buttons had moved from the upper right corner of ALL windows to the upper left corner. i would like to move them back to the original location but don't know where or which config file to look in.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved