Status
Not open for further replies.

shashanktyagi1

Journeyman
now its whole new problem.

first suggest some good tutorial on linux.
second how to mount secondary harddisk.
and can i access network through linux. all other in my hostel are on windows network. can i access them through ip directly?
 
Last edited:

mehulved

18 Till I Die............
Oh man, once more.
Post the output of fdisk -l
and contents of /boot/grub/menu.lst
And I hope suse won't overwrite settings done manually.
 
OP
shashanktyagi1

shashanktyagi1

Journeyman
cant access menu.1st
now what to do?????????

and i dont know a thing bout linux please explain every step

rootnoverify (hdd0,0)
chainloader (hdd1,1) +1
this is what is coming when i click windows
 
Last edited:

anantkhaitan

Burning Bright
I want to know how to run a command in background...
some commands take time while executing like when u r compiling something or if u r downloading ...

Tell me how can i get a new prompt and the previous command running in background without echoing anything

I don't want to open a new terminal window for that...
some commands like wget is having this feature but i want a universal one that works for all
 

praka123

left this forum longback
there are these commands bg for backgrounding and fg for foregrounding.now if u want something to bg, u can simply put a "&"
for eg:
Code:
~$updatedb &
will bg the process and u can bring back the process by asking the cmd
Code:
 fg %updatedb
all from a terminal window.
also refer "man bg" "man fg"
 

vignesh

Wise Old Owl
You can see the currently running and suspended jobs using the jobs command.

$jobs

You can also use the job number to resume the job

fg brings the job forward

bg runs the job in the background
 
Status
Not open for further replies.
Top Bottom