General :: Replacing Windows Xp With Ubuntu On Network?

Mar 15, 2011

I want to save some money in the office and instead of paying windows I want to use Ubuntu.

I know of way to add ubuntu to a windows server and I have recently installed a ClearOs box as a domain controller out of the box to add xp machines to. can anyone tell me how I would get an Ubuntu desktop machine to authticate for shares and login with my clearos box which is based on Centos.

If I can get this done, I can loose the windows machine and use zimbra as well instead of exchange.

View 1 Replies


ADVERTISEMENT

Ubuntu :: Remove It And Replacing With Windows Xp On Its Netbook (No CD Drive)?

Aug 22, 2010

Ok, i want to remove ubuntu and replace it with windows
I have the iso of windows xp on my desktop and on a usb
I want to install windows xp in anyway.

I cannot use any windows computers to do it, 2 of the computers have ubuntu, and 1 has windows, and the windows one I cannot use because its password protected due to my parents and their fear of me crashing their computer (Lol)

I want to install windows completely on my hard drive and get rid of ubuntu
Reasons to get rid of:
1. Annoying on my netbook
2. Cant do my video editing with it (the way Iwant to do it)
3. Wine doesnt work with anything i wanna install
4. Too hard to use
5. Made netbook slower

All i want is good old xp
(used to have windows 7, accidentally wiped it with ubuntu, and now i want to install windows xp on Samsung N150 Netbok)

I dont have a CD Drive or access to windows computers
All i have is a 4GB USB

View 4 Replies View Related

Ubuntu Servers :: Replacing Home Network - Central User Management Setup?

Jul 22, 2010

I am replacing a home network - Windows Server 2003 and 5 PCs (XP Pro) with UBUNTU 10.4 LTS Server and client versions. I am keeping a couple of the PCs with dual boot until I can migrate everything over (Having some issues with iTunes, Family Tree Maker, Media serving, DVD decrypt and a couple of others, but that is for another post). It was great fun getting the server up and running using only shell commands. Took me ages just to get a folder shared! Migrating the data over from NTFS to ext3 was also fun given the limited space on the partitions.

I really only want to use the server for communal network type things ... central user account maintenance, shared folders for music, video etc and data backup. I don't need it to be performing server functions on the Internet e.g. web server etc although that may come later. How I set up central user management? All the PCs are currently setup with local user ids, and it is a bit of a pain to go round each PC every time I change something.

The server is not always up, so I need to be able to log into the local PC without it being active. I was using Active Directory on Server 2003, but I don't need anything that complex really ... just 3 or 4 users to manage. I have been looking at the setup tutorial at [URL] but am not sure how relevant a lot of it is. I have SSH setup so I can login remotely, NFS is working to share the folders, but that is about all I have done so far.

View 2 Replies View Related

Fedora :: Install Windows XP On A Free Partition Without It Replacing The GRUB Boot Loader?

Sep 20, 2009

I am using Fedora 10, and was wondering if it is possible to install Windows XP on a free partition, without it replacing the GRUB boot loader?

View 6 Replies View Related

General :: Run Dosbox On Network \ Run That On Network (use Windows Xp)?

Aug 10, 2010

I have installed CentOs as server and trying to run .exe(dos program) there. i have already installed dosbox and works on running the program. But the problem is how can i run that on network (i use windowsXp)? i store the program and data on CentOs server and the client program runs directly on server (client just create shortcut to network path). I misassumed if we install dosbox on centos it can work, but it didnt for network

View 5 Replies View Related

General :: Replacing Awk With Perl?

Jul 16, 2010

I want the output of this file to be in a column, not next to each ohter. I tired putting a a newline escape character in a few places, but it breaks the script. It is easy in awk, just ls -ltr | awk '{print $8 }'

casper@casper-laptop:~$ pwd
/home/casper
casper@casper-laptop:~$ ls -ltr > /tmp/outfile
casper@casper-laptop:~$ cat -n /tmp/moreawkreplace
1#!/usr/bin/perl

[Code].....

View 1 Replies View Related

General :: Replacing Dot In String But Leaving Last One?

Jan 17, 2011

Possible Duplicate: replacing dot in string, but leaving last one replace the "." [dots], but leave the last one: e.g.: .txt [there could be random number of dots in the string, even zero, i just need the last one]

$ echo 'someth.ing.something.txt' | SOMEMAGIC
someth-ing-something.txt
$

View 1 Replies View Related

General :: Replacing Ownership Of Certain Files?

Jan 30, 2010

Is there any working commandline alternative to # find /some/dir -group xxx -user yyy | chown xxxxx:yyyyyThe main purpose is to replace ownership and goup of certain files in subdirectories. Or nevertheless I need to write shell script for that simple operation ?

View 5 Replies View Related

General :: Replacing Text In A File?

Jul 26, 2010

how to replace following text in the file name.cfg ?I need to replace

name:=inet.hr=>1|inet.hr=>1
with
name:=none
I am using
sed -i 's/name:=inet.hr=>1|inet.hr=>1/name:=none/g' name.cfg

View 4 Replies View Related

General :: Finding And Replacing Whole Line Using Sed

Mar 19, 2011

assume that i am having the following line in a file called file1. triumph and disaster must be treated same. I want to replace this line with. follow excellence success will chase you. is it possible to do this using sed. if possible kindly post me the code.

View 6 Replies View Related

General :: Replacing A Line With Spaces?

Jan 5, 2011

I have a line like

port = 2566

I want to replace it as

port = 8080

how to do this in shell script. when i tried to do this with sed

sed -i 's/port=.*/port='$3'/' /root/$2

it is not recognizing spaces , it works only if line is port=2566 .

View 6 Replies View Related

General :: Replacing Character / Value In Certain Column

Jun 21, 2011

I need to replace a value in a file. For example the content of data.txt file is:
1 1 23
2 1 42
3 2 52
4 2 62
5 1 77
6 1 88
7 2 99
8 1 100

Could I substitute 2 in second column with 3 using awk and or sed or other command so that the data will be change as follow?
1 1 23
2 1 42
3 3 52
4 3 62
5 1 77
6 1 88
7 3 99
8 1 100

View 3 Replies View Related

General :: Replacing Part Of Filename?

Apr 25, 2010

I have just re transcoded a bunch of avi's. to tell the new ones from the old ones I put '[xvid]' at the end of all the new avi's. but now I have deleated the old avi's I want to remove the [xvid] part of the file name. This is what I have so far

Code:
#!/bin/bash
for name in *.avi
do
newname=`echo "$name" | tr -d [xvid]`

[Code]...

View 10 Replies View Related

General :: Boot Error After Replacing Failed HD

Jan 28, 2011

I've got a 3 year old self-assembled system running Ubuntu 9.04, with an AMD Phenom 9850 quadcore with 4G ram on and M3A78-EMH-HDMI motherboard. I'm not really a hardware person, but the assembly was pretty smooth. A year ago (while running Ubuntu 8.04) I started getting messages that my HD was about to die (a 500G Western Digital). I ran out and bought two new HDs, a 1T WD Caviar black onto which I copied everything from the dying drive, and a 500G WD Caviar green onto which I installed Ubuntu 9.04. Everything went fine, except that I couldn't seem to get the system to boot if I removed the dying drive. So I just left it in. I've been getting "About to die" messages for the last year, but I had all the data on the backup 1T drive, and the system was actually running from the new 500G drive, so I didn't worry about it.

Last week the dying drive finally actually died, and the system failed to reboot on the next try, the error message was: Secondary Master Hard Disk Error No IDE Master H.D.D. Detected! Press F1 to ResumeNothing happened after hitting F1. There are 6 SATA ports, 4 red ones (1-4) and 2 black ones (5-6). Sadly, I failed to note which ports the drives were plugged into before I started tinkering. I seem to be able to replicate this error whenever the 500G drive with the master boot record is in a higher numbered port than the 1 T drive. If I reverse that so the 500G is on a lower port number, and if I make sure that the 500G drive has a higher boot priority in BIOS, then I get no error messages at all, but after the POST sequence is finished all I get is a blinking cursor at the top of the screen that doesn't respond to the keyboard (never even getting to GRUB). I can Ctrl-Alt-Delete to reboot, but nothing else has any effect.......

View 14 Replies View Related

General :: Replacing The Text In Same File Using SED Command?

Oct 11, 2010

I have a String like "A.words=Ajay,Anil" in file A.And it contains a lot of other information also. I wanted to replace "Ajay,Anil" with "Vijay,Vinay" with sed command with using existing file only(not using another file)

View 9 Replies View Related

General :: Replacing Empty Values In Bash?

Mar 11, 2011

I'm executing the below bash script, but when the m variable doesn't get any value it becomes empty. I don't want that.

Code:
for i in "$@"
do
m=$(grep TOTAL_MAPS $i | awk '{ print $2}');
totalmaps+="<string>"$m"</string>"

[Code]....

View 6 Replies View Related

General :: Sound Doesn't Work Anymore After Replacing RAM?

Dec 24, 2010

I replaced one old RAM module with two newer, bigger ones, but now, the sound doesn't seem to work anymore. Already ran alsaconf andOutput of lspci for the audio device:

00:07.0 Audio device: nVidia Corporation MCP67 High Definition Audio (rev a1)
Subsystem: Giga-byte Technology Device a002
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR-

[code]....

View 1 Replies View Related

General :: Removing All Traces Of GNU Java And Openjdk And Replacing With Sun JDK

Mar 20, 2011

I have installed latest Sun JDk. But when I do: java -version I still got OpenJDK version. So I completely removed OpenJDK. But now when I do:

java -version I get even older GNU java 1.5 something libgcj. So I completely removed that too but it was asking to remove bunch of dependent apps like OpenOffice.org Writer etc. Even though I need the writer, I let it go because I do not want ever to see the face of any GNU java on my linux. So everything related to GNU java is removed. Luckily I am able to start Eclipse and it works fine and start normally (apparently using the installed Sun JDK which is what I want). But now when I run

java -version I get bash: /usr/bin/java: No such file or directory Now what I need to do so that when I open any terminal window and enter java -version I should get Sun JDK version? Sun JDK is installed in /usr/java/jdk1.6.021. I also have symlinks: /usr/java/latest and /usr/java/defaults pointing to sun jdk.

As suggested in the answer, I tried the alternatives command but it did nothing. I type the --display, nothing is shown, and --config does nothing.

View 1 Replies View Related

General :: No Automatic Rebuild Of RAID 5 After Replacing Bad Disk

Dec 12, 2009

I have a 5 disk raid 5 array that is composed of SATA A:0,1; SATA B: 0,1, and SATA C:0, and one of the disks (SATA A:0) recently went bad on me. I have an ICP raid controller that is about 5 years old. I replaced SATA A:0. After rebooting, I went into the controller and verified that it saw the disk in the hard-disk info section...there I noticed that in the "status" section, that the SATA C:0, SATA B:1 disks were listed as being "in array", the SATA A disks were blank, and the SATA B:0 disk was listed as "fragment". When I go into the "repair array" section, the controller tells me that there are no arrays that are in failure, error, or need to be rebuilt.

This puzzles me, as I thought the controller would know that the array needs to be rebuilt after replacing the disk and I don't see a way to initiate a rebuild. If I just let the server boot after replacing the disk, then I get back that there are the correct number of disks in the raid 5 and that it is ready, however, the screen then goes blank and I get a blinking cursor and the system seems to hang. There are no activity lights on any of the drives associated with the raid 5, which makes me think that the system is not rebuilding the array at this point.

View 3 Replies View Related

General :: Replacing A Numeric String With A Sequence Of Numbers?

Jun 21, 2009

I have a text file with content that look like this..

Code:
1,3927,"AIS"
1,6928,"AIS"

[code]...

View 13 Replies View Related

General :: Sed - Replacing Only Text With Several Specific Lines Excluded

Jun 17, 2010

As much as I didn't want to ask a sed question, especially considering there's already one on this page I've looked as best I could and cant find the solution. Id like to use sed to replace occurrences of a pattern but exclude two or 3 specific lines that are not consecutive. For example I know with 1,10 i could exclude the first 10 lines, what is the syntax if I just wanted to exclude line 3 and 7. The sed command I'm working with right now is for rearranging Ethernets.

cat /etc/udev/rules.d/70-persistent-net.rules | sed -e '/'"$found1fullmac"'/!s/eth1/'"found1eth"'/' > /etc/udev/rules.d/70-persistent-net.rules

I would like to replace $found1fullmac with two variables representing line numbers to exclude from the replacement.

View 6 Replies View Related

General :: Replacing Single Quotes In Filenames With Another Character

Jan 26, 2011

Can anyone offer a code snippet to recursively go through directories and replace any single or double quotes quotes found in a filename with another character (e.g. "_").If any of the filenames contain a single quote or double quote, then replace it with an underscore.

View 7 Replies View Related

General :: Setup Ubuntu To See Windows Network?

Apr 13, 2010

I've tried the various tutorials and no success so far.

I can connect to the router and from there to the internet, but I cannot see any network shares. I'm connecting through wlan0. I would prefer to keep the dynamic IP address if possible.

In answer to heavyd, smbtree gives me:

WORKGROUP
\COMPUTER1
cli_start_connection: failed to connect to COMPUTER1<20> (0.0.0.0). Error NT_STATUS_UNSUCCESSFUL
\MY-LAPTOP my-laptop server (Samba, Ubuntu)

[Code]....

The data above has been anonymized for my protection.

Also I can ping them, I just can't see them via smb://.

View 2 Replies View Related

General :: Replacing Word Occurrence With An Increasing Number In A File Using Bash?

Aug 2, 2010

I have a file in the form below, and wish to replace each start line with an increasing number. So instead of:

Code:
start
content content
start
content content
start

[Code]....

After several searches and a bit of messing around, it's clear I'm missing something, so was wondering if anyone could offer any insight?

View 17 Replies View Related

General :: Windows - Share Folders Over Network Across OSs?

Dec 21, 2010

I have a desktop with ubuntu 10.04 with my whole music collection in it. I want to access it using my laptop and my brother's laptop, both running windows (vista and 7 respectively). All are connected to the same network.

View 1 Replies View Related

General :: Transfer Files From Windows Over The Network?

Jul 27, 2011

I have a Windows machine and a Linux machine both hooked up to the router via Ethernet cables. What is the easiest way for me to transfer files from the Windows machine to the Linux one?

View 2 Replies View Related

General :: Cant View Windows Network From Mint?

Feb 21, 2010

I am seeing the MSHOME icon which my windows network workgroup is on, when i double click on it and its asking me for a username, domain and password. I dont use a username or password to log into any of my computers and the domain im not sure what to enter into this field it populates with WORKGROUP

View 4 Replies View Related

General :: Joining VM To Windows Network Dormain?

Jun 30, 2011

I have created a linux vm on hyper-v and would like to put it on our network domain. The Hyper-V software is running on windows server 2008. I would appreciate it if you could please give me a step-by-step guide on how to make this possible or a reference where i can get information on how to do this.

View 1 Replies View Related

General :: Secure Remote Desktop Of Ubuntu On Windows Machine On Different Network?

Oct 22, 2010

I would like to setup a remote desktop for my Ubuntu computer so I can use my computer on a Windows computer that is on a different network. How can I do this?

View 1 Replies View Related

General :: Windows 7 Network : Can't Ping System Box Using Hostname / Fix It?

Sep 17, 2010

First off I should say that I am a total Linux and Networking Noob. I have used Windows all my life, but I am now trying to get into linux so I have set up an old PC with Fedora.

Currently I only have the Linux Box and a Windows 7 Box and they are both connected to my broadband router. I have set them up with static IP addresses in the router and they can both ping each other by IP address but not hostname. I would like to be able to use hostnames to access each box (e.g. for SSH access and File Sharing). My question is basically how can I do this, what are the options and which is recommended for a small home network?

So far I have been able to set up the linux box to be able to ping the Windows box by hostname by editing the hosts file. Is this the right thing to do? Should I just do this on the Windows box too?

View 2 Replies View Related







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