This article is called "How To Get Started With No GUI"
Eric Jackson
>
> */Andrew Syrewicze <asyrewicze@gmail.com>/* wrote:
>
> On Monday 11 February 2008 13:44:25 Mike Bullen wrote:
> > I used 7.10 Gutsy. Ran lsb_release -a , shows correct release. My
> monitor
> > is a Gateway FPD175w LCD 19 in. Ran startx got an error.
> >
> > Andrew Syrewicze wrote: On Monday 11 February 2008
> 12:07:43 Mike Bullen wrote:
> > > I downloaded Ubuntu and it installed OK. My problem is I have
> not used
> > > Linux before but is familar with UNIX. All I have right now is
> the famous
> > > $ prompt. I want to get the graphical user interface such as
> Kubuntu. I
> > > read that there are different packages to be installed to
> acquire Kubuntu
> > > from an Ubuntu installation. What steps are needed to get the
> Kubuntu up
> > > and running? How do I setup a connection to the internet?
> > >
> > > Thank you
> > > Mike Bullen
> >
> > What CD Image did you download and use for the installation??
> >
> > --
> > ANDO
>
> What error did you receive???
>
> also what kind of Graphics card are you using??
>
> --
> ANDO
>
> --
> kubuntu-users mailing list
> kubuntu-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/kubuntu-users
>
>
>
>
> Thank you
> Mike Bullen
>
--
kubuntu-users mailing list
kubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/kubuntu-users
04-02-2008, 11:29 AM
"chuck Zahn"
question
***** Are they going to realease gobuntu for order to get free.* like Ubuntu, Kubuntu and EDUbuntu.
--
Gobuntu-devel mailing list
Gobuntu-devel@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/gobuntu-devel
04-02-2008, 05:30 PM
Kurt von Finck
question
chuck Zahn wrote:
> Are they going to realease gobuntu for order to get free. like
> Ubuntu, Kubuntu and EDUbuntu.
I'm guessing you mean the Ship-It service, which provides snail-mailed CDs.
https://shipit.ubuntu.com/
My guess is no, as Gobuntu is an Ubuntu project and not a product.
Xubuntu also falls into this category.
Ubuntu, Kubuntu and Edubuntu are the official Canonical products, and I
think that's the determining factor into Ship-It availability.
N.B. - My role as Canonical employee doesn't bring me near Ship-It or
its policies much. My impressions of Ship-It policy are just that.
--
./k
Kurt von Finck
Senior Ubuntu System Support Analyst
Canonical, Ltd.
--
Gobuntu-devel mailing list
Gobuntu-devel@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/gobuntu-devel
10-06-2008, 08:43 AM
Nicolangelo Iannella
Question
Has fc10 been released? I have just received notification through the
package manger that 802 updates are available and all have the labels
fc10 ... is this a beta?
best regards,
--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
10-06-2008, 08:49 AM
"Antonio M"
Question
2008/10/6 Nicolangelo Iannella <nicolang@brain.riken.jp>:
> Has fc10 been released? I have just received notification through the
> package manger that 802 updates are available and all have the labels fc10
> ... is this a beta?
>
> best regards,
>
>
>
> --
> fedora-list mailing list
> fedora-list@redhat.com
> To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
> Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
>
it means that you have enabled rawhide in repository management (yum
configuration files).
I understand that F10Beta has been released, I am running F10 that is
a F9 upgraded through yum!!!
Minor issues, so that I am using it as my primary system also at work.
--
Antonio Montagnani
Skype : antoniomontag
--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
10-06-2008, 08:50 AM
Ed Greshko
Question
Nicolangelo Iannella wrote:
> Has fc10 been released? I have just received notification through the
> package manger that 802 updates are available and all have the labels
> fc10 ... is this a beta?
>
F10 (no more "Core") is currently in beta.
--
"And, when the doctor said I didn't have worms any more, that was the
happiest day of my life." --Ralph Wiggum Lisa the Greek (Episode 8F12)
--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
10-17-2008, 02:52 PM
Jerry Geis
question
I am trying to increment a filename in a script example name is 000001.txt
and I need to keep the leading 0's. I have no problem if the name was
1.txt, 2.txt etc...
var=`expr $var + 1`
however how do I keep the leading 0's?
Thanks,
Jerry
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
10-17-2008, 02:55 PM
Matt Hyclak
question
On Fri, Oct 17, 2008 at 10:52:15AM -0400, Jerry Geis enlightened us:
> I am trying to increment a filename in a script example name is 000001.txt
> and I need to keep the leading 0's. I have no problem if the name was
> 1.txt, 2.txt etc...
> var=`expr $var + 1`
>
> however how do I keep the leading 0's?
>
printf
--
Matt Hyclak
Systems and Operations
Office of Information Technology
Ohio University
(740) 593-1222
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
10-17-2008, 03:31 PM
Jerry Geis
question
On Fri, Oct 17, 2008 at 10:52:15AM -0400, Jerry Geis enlightened us:
>/ I am trying to increment a filename in a script example name is 000001.txt
/>/ and I need to keep the leading 0's. I have no problem if the name was
/>/ 1.txt, 2.txt etc...
/>/ var=`expr $var + 1`
/>/
/>/ however how do I keep the leading 0's?
/>/
/
printf
perfect - thanks,
Jerry
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
12-13-2008, 01:05 PM
"Zoltan Kerenyi Nagy"
question
Hi Guys!
Sorry but I'm new to this whole mailing list additionaly english is not my first language.
How can I make sure that the question I sent to this mail list is in the system yet, and you have seen it?
Thanks,
Zoltan
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users