Ubuntu :: Watch Downloading Process Then Go Hibernate?
Feb 27, 2011
I wonder whether it is possible to watch downloading process then after the download is complete, the system go hibernate automatically. I used to download using DownThemAll (firefox addon ) or JDownloader.
View 2 Replies
ADVERTISEMENT
Feb 11, 2010
how to download anything on my eee pc. I can't watch a lot of videos because i have the old flash player.
View 2 Replies
View Related
Jun 21, 2010
I've just downloaded fedora 13 and wanted to watch a video on ...... I needed to download the latest version of adobe. So I was able to download it but not able to use it and watch the video. Watch should i do? Is there another program I can use to watch the video or am i doing something wrong.
View 1 Replies
View Related
May 27, 2010
I have 10.04 installed on my Laptop (Dell Latitude D630 with the Nvidia video upgrade). This was a clean install to a hard drive that I let it totally erase and use as it saw fit. I am using the Nvidia driver marked as "current" in the hardware driver settings.
When my laptop screen dims due to inactivity, such as not used for 5 mins or so, it will prompt me for a password to log back in. No big deal. However, when it resumes from this state it is SLOW!! I go to system monitor and see that the process "Compiz" is burning up both of my cores at about 70% or HIGHER. It's not using a significant amount of memory which is strange.From what I have been able to gather Compiz has some responsibilty for the GUI and killing the process to attempt to restart it is a "bad idea".
View 7 Replies
View Related
Jul 9, 2011
I have problem with resuming after hibernate, it is about 50% chance that computer restart when I want resume, then it starts boot normally and all my work is lost.
Acer aspire 3820tg
Ubuntu 11.04
Builtin hibernate on partition
I try uswsusp s2disk ... on resume it always stops in half of process. I used mainly hibernate, but I'm lost now.
View 9 Replies
View Related
Apr 30, 2010
I have created a simple download schedular with source-code give below :
---------------------record_strokes.sh-------------------
touch /home/student/packs/lynx/logfile
lynx -cmd_log /home/student/packs/lynx/logfile
[code]....
So, this is a simple download scheduler program code. Which creates multiple threads of the downloading process - wget (i could also have used 'curl' instead 'wget').Can you debug this code?
View 1 Replies
View Related
Apr 30, 2010
I have created a simple download schedular with source-code give below :
---------------------record_strokes.sh-------------------
touch /home/student/packs/lynx/logfile
lynx -cmd_log /home/student/packs/lynx/logfile
[code]....
View 1 Replies
View Related
Apr 6, 2010
Version: #1 SMP Tue Aug 18 15:51:54 EDT 2009Release: 2.6.18-164.el5While running "yum update"After Transaction summary shows download size. I answer the question:"Is this ok [y/N]: y" and process freezes on next line?I have tried yum clean all and retried same result? I have allowed it to continue for several , many, minutes but must CTRL Z to stop process then kill remaining yum processes.I have also deleted and rebuilt the rpm database
View 4 Replies
View Related
May 25, 2011
Just like e.g. people can press Ctrl+P when running a VirtualBox guest, it can pause the guest, after pressing again Ctrl+P it will continue right there where it was stopped. Are there any command line commands on Windows/Linux where I can do the same with a process? (the process is e.g.: Firefox, etc.)
View 3 Replies
View Related
Apr 10, 2010
I'm using pm-hibernate, and would like to reboot the machine after it's done hibernating, rather than having the machine turn off.Is there a way to do this with pm-hibernate, or any other Linux hibernate thing?
View 2 Replies
View Related
Mar 16, 2010
Just got Ubuntu 9.10 and I'm liking it a lot, but my computer refuses to go into hibernate or suspend. I have a Dell M1530 but I don't really think it's a dell hardware issue because it's not just when I close the screen, it's also when I click suspend or hibernate from the menu.
View 2 Replies
View Related
Nov 11, 2010
I've some file with .sh extensions that runs some softwares.Now,how do I stop running that filesI know we run the command ./start_tomcat.sh to start the apache.Is there any command to stop that file/process or is it just kill the process to stop the process
View 2 Replies
View Related
Jan 8, 2010
one tell me the internal working of kill command. that is how it kills a process internally or from where it picks file to continue its process.
View 3 Replies
View Related
Jan 21, 2011
I have a high priority service that I start with sudo nice -n -10 process. This process does not need superuser rights though, except for the priority elevation. But nice requires superuser privileges to elevate priority.
View 3 Replies
View Related
Jun 12, 2010
send the details raid configuration how to use in linux el5 and how to indentify the raid degrade process and how to rebuilt the process.
View 4 Replies
View Related
Sep 8, 2010
Code:
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
[code]....
Description of what the code does or what i intended to do:
1. Created a child process from parent process using 'fork()'
2. Sent a signal 'SIGALRM' from child process to parent process using 'sigqueue' function.
(The Third parameter of 'siqueue' function contains the message (message msg) which the child process wants to send to the parent process.'msg' is a stucture instance containing a) pid of child and b) string) 5. Print the 'msg' sent by child process inside the signal handler function 'sig_action_function' of the parent process I am getting some junk value when this line is executed
Code:
printf("%d
",msg->cpid);
I expected to get the pid of child process, which the child process sent to parent process through the signal.
View 3 Replies
View Related
Aug 12, 2010
as we all know Process Scheduler does Process scheduling and its a process as well. I was just wondering that if this happens then the Process "Process Scheduler" should be a part of Process queue as well.
So if there are 5 process are there in Process queue & process scheduler is administrating them then since its also a process, once it puts a process under RUN state it should itself go inside queue because at one instant only one process can get executed on a processor. This is quite confusing for me. Please help me out. I tried to search on this but could not find any relevant topics.
View 1 Replies
View Related
May 4, 2010
How do you find the parent process of zombie processes?
When the child process is something where the parent is not entirely obvious...
Is there some way to list processes in tree format or something?
View 3 Replies
View Related
Nov 9, 2010
I have a shell script to identify whether the process is running or not. If the process is not running, then I execute another script file to run my application. Below is my script and saved this script as monitorprocess.sh Code: #!/bin/bash
result=$(ps -ef | grep -v grep | grep "applicationname.sh" | awk '{print $2}')
echo $result
if [ "$result" == "" ];
[code]...
View 4 Replies
View Related
Nov 9, 2010
I have a process running on Linux.When i do ps -eaf | grep <myProcess>, it show muliple entries for <myProcess> with different pids for each entry.Kindly tell me what could be the reason for a process having multiple pids?
View 1 Replies
View Related
Mar 31, 2011
Is there any difference in cpu usage for process in init.rc(runs automatic when boot is happened) and manually running process. Will these both have same priority by default...?
View 1 Replies
View Related
Nov 26, 2008
I tried googling but didn't get any answer for this.I have a process called "abc" and it is running with PID "123".I have a putty session opened with PID "999".I am giving kill -TERM 123 from putty session.My process "abc" before dying it should catch the PID of the terminal which provided TERM signal to it.Is there any way to find this out
View 2 Replies
View Related
Mar 23, 2010
I want ro ran new commandy after sungrid finish his task.Exp:qsub -q bla command1; command2 command2 start only when job of command1 finished.
View 9 Replies
View Related
Nov 16, 2010
I've been running my shellscript for about half an hour now. It's taking longer than I thought to process all the data. I have the process ID of it. Is it possible to save the process and log out then log in and continue the process? I know how to pause a process using kill -pause pID and continue it using kill -cont pID. But that only work if you don't log out after pausing it.
View 5 Replies
View Related
Apr 8, 2010
I can not watch videos from the following site:[URL]..
View 9 Replies
View Related
May 1, 2010
I searched and found threads recommending mozilla-mplayer plugin in the synaptic packet thingymejig. Couldn't find it there myself and although I found a mplayer plugin in the other Ubuntu software library installation program, it didn't allow me to install it (there wasn't an install button!).
So is there a recommended way of getting Firefox to show mms streams?
View 2 Replies
View Related
May 24, 2010
I installed my DVB-T board and I can watch TV using VLC and my channels.conf file. I saved a copy of channels.conf as ~/.gstreamer-0.10/dvb-channels.conf but when I start Totem (GStreamer ed.), I don't see a "Watch TV" option under the "Movie" menu.
View 6 Replies
View Related
Jun 24, 2010
I have a series of system usability bash scripts that I sync with dropbox (and share with other friends that I have set ubuntu up on) and then have those folders sym linked to ~/bin. The problem is, when I change something on one computer, the scripts lose executability on other computers. First, I guess I will ask, is there a way to stop this from happening?
Failing that, is there a way that I can have Dropbox's events monitored so that when something is updated, it runs a script on my Script folder adding 'chmod +x' to all the bash scripts. This is the simple nautilus-script that I am currently using to easily batch change the modes:
Code:
#!/bin/bash
#token: nautilus-script
for FILE in *
do
chmod +x "$FILE"
View 7 Replies
View Related
Aug 29, 2010
Rather than adding each music/video file one by one in XBMC is there a way to just add a folder to watch and as you add music under it, it automatically shows up in XMBC? If not, is there any application that allows something like that? I'm looking for one central application to use for all media playback - dvds, music, videos, pictures... XBMC seemed like the right choice, but I'll be adding moves and music for a year if I had to do each of them 1 by 1.
View 1 Replies
View Related
Oct 31, 2010
I've got an eeepc 1101ha and have installed the latest ubuntu, 10.10, but i can't watch any videos! Besides the original player, i have installed and tried to watch videos in VLC, SMPlayer and GNOME MPlayer but it has always some kind of error. In VLC I can hear the sound. On all others the file simply doesn't work.
View 5 Replies
View Related