Hey ... i need to uninstall linux from my laptop not bothered if i have to format it all of my work is backed up im using FEDORA CORE 3 anyone got any ideas?
need to get it off so i can put windows on for a couple of weeks got to get a few things done i will then bang it on dual boot...
is it also possible for me to create a dual boot from linux?
More frequently (for my work), i use XP because most Macromedia & Adobe developers don't make their products targeted towards linux-based communities (to my knowledge).
In a nutshell, my XP is temporarily "dead".
And (more then ever right now) Knoppix is the bestest thing in the whole wide world. B)
Only problem, is that i'm a complete linux N00B and because of my crazy schedule @ school i'm at a loss for copius time (or brianpower) to ingest mountainloads of linux FAQs & "How to" docs (though i am trying whenever i can!).
1.) How well can i trust Knoppix 3.36 by itself w/o a firewall (or does it have a built-in firewall? o.O)
2.) Is there an open-source firewall in the works or already out there?
3.) Besides just copying over files to my root dir (where i have my recently corpse-ified XP installed & since the data on my drive is still good with copius backups left to do!) how do i install Knoppix onto my system?
4.) Does installing a 2nd OS (i.e. Knoppix) conflict with an already-installed OS? Or am i now forced to resort to creating a partition for it?
5.) If argument = "true" to latter q.4.) , then is there a way to set up an "emergency activation of said "partition" in case of XP breakdown a 2nd, 3rd or 4th time" ? -or does that just happen in hollywood? o_O
6.) Is there decent CD-burning software on the Sourceforge/general open-source market?
7.) Is there a decent 5-in-1 instant messenger for the K! desktop?
8.) How do you extract stuff using "Ark" (for example) if you want to install kmerlin? :(
For now this'll be all... until i can figure out how to either get my XP back or how Knoppix or (more specifically) the "programming Linux commands" process works.. [img]<___base_url___>/uploads/emoticons/default_ph34r.png[/img]
When looking at a site such as rpmfind I often see a list of rpm's that are for different versions e.g FC2, FC3 etc etc etc. You often see a .src.rpm file as well which, correct me if I am wrong, is the source code, but in a rpm package.
Does this mean that if I download this .src.rpm package and install that with...
rpm -ivh whatever.src.rpm it will install OK ???
I hope somebody can clear this up in my foggy mind.
I decided I would like to listen to my vast mp3 collection from anywhere. I went with shoutcast as I have several friends that use it and it looked like it would serve my needs perfectly. First you need to get the shoutcast source and to send the stream to the shoutcast server you will need to get sc_trans. I read that you can use winamp to stream to shoutcast but I don't use windows or winamp so I used sc_trans. It takes a playlist of mp3s and sends it to the server. The playlist is just a list of mp3s using full paths. I will include examples at the end of this little explanation.
First you should create a user to run the server and sc_trans { useradd shoutcast } You really don't want this to be ran as the root user for safety sake. Now that you have your user created you need to become that user with su { su - shoutcast } this will give you a login shell as the shoutcast user. Now let's grab the files you will need { wget [/url]http://www.shoutcast.com/downloads/sc1-9-5...x-glibc6.tar.gz && wget http://grep420.net/linux/sc_trans_040.tar.gz } Now that you have the files you need lets get them untar'd and gunzip'd. { tar -xvzf shoutcast-1-9-5-linux-glibc6.tar.gz && tar -xvzf sc_trans_040.tar.gz } First lets make this easier to work with { mv shoutcast-1-9-5-linux-glibc6 shoutcast } { mv sc_trans_040 sc_trans }
Now let's get started with the configuration. { cd shoutcast } Now you need to open the server configuration file in your text editor of choice. I use vi, so I would type vi sc_serv.conf you can usually find nano on your system if you are unable to figure out vi, or type vimtutor for a quick lesson on the basics of vi. Now that you have sc_serv.conf open you need to set a few values for this to work the way you want.
# sc_serv.conf
MaxUser=20 # set this to the maximun number of people you want to connect to the stream
Password=YourPassword # this is the password you use in the sc_trans.conf file
PortBase=8000 # this is the port it will listen on
AdminPassword=MyPassword # this is your admin login for the web based admin tool
That's all you really need to edit in the server conf. Save that file and go configure sc_trans. { cd ~/sc_trans } You will need to edit sc_trans.conf the same way we did sc_serv.conf
#sc_trans.conf
PlaylistFile=/home/shoutcast/playlist.lst # this is your list of mp3s you want to stream
ServerIP=localhost # most likely this is what you want
ServerPort=8000 # this is the port that you set in sc_serv.conf
Password=YourPassword # this is the password you set from above in sc_serv.conf, not the admin
StreamTitle=blah # set this to what you want displayed in the players
StreamURL=http://grep420.net # set this to your domain or the site you want
Shuffle=1 # set this to 0 if you don't want it to shuffle, it will play each sonf from your list in order
The playlist is very simple. It is just a list of each mp3 you want to stream. It needs full paths and the user shoutcast will need read access to the files. { chmod 755 /nfs/mp3 }
#example playlist.lst
/nfs/mp3/tool/pushit.mp3
/home/shoutcast/music/sublime/santeria.mp3
/home/flukex/mp3/Madonna/likeavirgin.mp3
Now you have them configured, here is the last tricky part. If you are using NAT ip's behind a linux router/gateway you will need to forward some ports to the internal ip of the shoutcast server. I will give you an example.
# iptables example is assuming eth0 is your external interface on the router/firewall box.
Now lets start the server. { cd ~/shoutcast && ./sc_serv sc_serv.conf & } and sc_trans { cd ~/sc_trans && ./sc_trans sc_trans.conf & } You will start to see the output of what is happening in your terminal. Now login to the web tool and check the status. Open your browser to the servers ip on port 8000 { [url=http://192.168.1.10:8000]http://192.168.1.10:8000 } You should be able to click on admin login and use the password you set in sc_serv.conf above.
I hope this works for you as easily as it did for me, and if I left anything out please feel free to post your questions here.