Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,214
» Latest member: topupaman
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 368 online users.
» 0 Member(s) | 365 Guest(s)
Bing, Google, Yandex

Latest Threads
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 410
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 85,844
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 40,062
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,860
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,328
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 41,330
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 115,934
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 53,804
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 44,112
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 41,780

 
  format windows hd's to linux format
Posted by: anyweb - 2006-03-28, 08:39 PM - Forum: Filesystem Management - Replies (1)


i had a windows 2003 server which i have recently converted to Fedora Core release 4

 

the install basically used the first hdd (as i told it to) and the remaining three hd's still had the original 'dynamic disc NTFS' format on them from Windows 2003 server.

 

I wanted to format all the other three hd's to Ext3 filesystem (for journalling) and to do so i had to first change the partition info from the SFS filesystem to LINUX

 

here's the output before i did anything

 

Quote:[root@localhost ~]# fdisk -l 

Disk /dev/hda: 120.0 GB, 120034123776 bytes

255 heads, 63 sectors/track, 14593 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hda1 * 1 13 104391 83 Linux

/dev/hda2 14 14593 117113850 8e Linux LVM

 

Disk /dev/hdb: 120.0 GB, 120034123776 bytes

255 heads, 63 sectors/track, 14593 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hdb1 * 1 14589 117186111 42 SFS

 

Disk /dev/hdc: 123.5 GB, 123522416640 bytes

255 heads, 63 sectors/track, 15017 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hdc1 1 15017 120624021 42 SFS

 

Disk /dev/hdd: 120.0 GB, 120034123776 bytes

255 heads, 63 sectors/track, 14593 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hdd1 1 14589 117186111 42 SFS
 

 

so above, as you can see,. /dev/hda1 is already in linux format (actually it's a LVM logical volume manager format which Fedora Core defaults to) and i want to change the other three hd's from SFS (dynamic disks in windows 2003 server) to Ext3 linux.

 

first off, i need to re-partition the hard disc's one by one, so i started with /dev/hdb

 

login as root and do this

 



Code:
fdisk /dev/hdb




 

you will now be given some info like this

 

Quote:The number of cylinders for this disk is set to 14593.There is nothing wrong with that, but this is larger than 1024,

and could in certain setups cause problems with:

1) software that runs at boot time (e.g., old versions of LILO)

2) booting and partitioning software from other OSs

(e.g., DOS FDISK, OS/2 FDISK)

 

Command (m for help):
now type the letter 't' as follows:- 



Code:
Command (m for help): t
Selected partition 1
Hex code (type L to list codes):




 

and now tell it what filesystem you want (83=linux)

 



Code:
Hex code (type L to list codes): 83
Changed system type of partition 1 to 83 (Linux)




 

finally you need to write those changes so do that with a simple 'w'

 



Code:
Command (m for help): w
The partition table has been altered!




 

 

to verify that the changes are made as root do

 



Code:
fdisk -l




 

as you see below, /dev/hdb is now type 83=linux

 

Quote:[root@localhost ~]# fdisk -l 

Disk /dev/hda: 120.0 GB, 120034123776 bytes

255 heads, 63 sectors/track, 14593 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hda1 * 1 13 104391 83 Linux

/dev/hda2 14 14593 117113850 8e Linux LVM

 

Disk /dev/hdb: 120.0 GB, 120034123776 bytes

255 heads, 63 sectors/track, 14593 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hdb1 * 1 14589 117186111 83 Linux

 

Disk /dev/hdc: 123.5 GB, 123522416640 bytes

255 heads, 63 sectors/track, 15017 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hdc1 1 15017 120624021 42 SFS

 

Disk /dev/hdd: 120.0 GB, 120034123776 bytes

255 heads, 63 sectors/track, 14593 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

 

Device Boot Start End Blocks Id System

/dev/hdd1 1 14589 117186111 42 SFS
 

 

ok, now that's all done, you need to format the hdd to your chosen filesystem, i chose ext3 and this is how i did it

 



Code:
mkfs.ext3 /dev/hdb1




 

it won't take long, and once done you'll see something like this scroll by,,

 

Quote:mke2fs 1.38 (30-Jun-2005)Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

14663680 inodes, 29296527 blocks

1464826 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=29360128

895 block groups

32768 blocks per group, 32768 fragments per group

16384 inodes per group

Superblock backups stored on blocks:

32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,

4096000, 7962624, 11239424, 20480000, 23887872

 

Writing inode tables: done

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done

 

This filesystem will be automatically checked every 36 mounts or

180 days, whichever comes first. Use tune2fs -c or -i to override.
and that's it, only two more hdd's to go ! 

thanks to znx and omegaevil for assistance with this, and below please see the 5 line version of this howto ;-)

 

Quote:fdisk /dev/hdbt

83

w

mkfs.ext3 /dev/hdb1
 

cheers

anyweb

Print this item

  Download: NTFS for 2.6.16-1.2080_FC5
Posted by: mcduck - 2006-03-28, 01:00 PM - Forum: Fedora Core Release 5 - Replies (4)


RPM: [/url]http://www.win-vista.net/downloads/linux-n...r.10.5.i686.rpm

 

Install;

 

Run this command as root: rpm -ivh [url=http://www.win-vista.net/downloads/linux-n...r.10.5.i686.rpm]http://www.win-vista.net/downloads/linux-n...r.10.5.i686.rpm

 

Test that its properly installed by running;

 

modprobe ntfs

 

If there is no error message, its installed properly. If you get this error;

 

No such module NTFS,

 

Its not installed properly.

 

I'l keep the rpms comming as redhat updates their development kernels.

Print this item

  ndiswrapper help
Posted by: Carl72 - 2006-03-28, 05:36 AM - Forum: Slackware - Replies (2)


I am running Slackware 10.2 with the 2.4.31 Kernel.

 

For the past few days I have been trying, with no luck, to install ndiswrapper. I have followed the Wiki Located Here. Everything goes as planed, I assume, untill I have to input "make install." At that point I get:

 



Code:
root@Computer:/home/User/tmp/ndiswrapper-1.11# make install
make -C driver install
make[1]: Entering directory `/home/User/tmp/ndiswrapper-1.11/driver'
cc -DEXPORT_SYMTAB -DMODVERSIONS -include /lib/modules/2.4.31/build/include/linux/modversions.h -DUSB_DRIVER_OWNER -freg-struct-return -DDRIVER_VERSION=\"1.11\" -DLINUX -D__KERNEL__ -DMODULE -I/lib/modules/2.4.31/build -Wall -Wstrict-prototypes -fomit-frame-pointer -fno-strict-aliasing -pipe -O2 -mpreferred-stack-boundary=2    -c -o hal.o hal.c
In file included from hal.c:24:
ntoskernel.h:43:28: net/iw_handler.h: No such file or directory
make[1]: *** [hal.o] Error 1
make[1]: Leaving directory `/home/User/tmp/ndiswrapper-1.11/driver'
make: *** [install] Error 2
root@Computer:/home/User/tmp/ndiswrapper-1.11#




 

 

If you need more info on this topic post your question, but like I said i followed the wiki to a T and thats what I got.

I really do not know what to do here so if anyone is willing to take the time to help an

Print this item

  longhorn 5342
Posted by: anyweb - 2006-03-26, 09:08 PM - Forum: Vista - Replies (2)


have a look

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1143407414.jpg" data-fileid="508">[img]<fileStore.core_Attachment>/post-1-1143407414.jpg[/img]</a>

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1143407577.jpg" data-fileid="509">[img]<fileStore.core_Attachment>/post-1-1143407577.jpg[/img]</a>

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1143407752.jpg" data-fileid="510">[img]<fileStore.core_Attachment>/post-1-1143407752.jpg[/img]</a>



Attached Files
.jpg   Untitled.JPG (Size: 116.39 KB / Downloads: 0)
.jpg   Untitled1.JPG (Size: 208.71 KB / Downloads: 0)
.jpg   Untitled2.JPG (Size: 255.74 KB / Downloads: 0)
Print this item

  Mandrake 2006
Posted by: JordanRRR - 2006-03-26, 04:30 PM - Forum: Mandriva - Replies (3)

I recently downloaded all 3 Mandrake 2006 ISO's and then went on to install it. Everything went fine until I tried to boot it after install. It went through all the checks (new hardware etc) and then after that it goes to a black screen with a solid dash in the top left of the screen (doesn't blink). It never changes from this screen. I am a linux noob so any answers would be greatly appreciated :)

Print this item

  Just loaded Fedora Core 4
Posted by: mizzy - 2006-03-26, 11:08 AM - Forum: Fedora Core Release 4 - Replies (3)


Please bear with me, complete noob to linux :/

 

Just loaded FC4 for the first time las night. First mission is to get it connected to the net :)

 

My laptop hasn't got a network card init (yet) but for the moment I am connected via a USB network thing (According to my network configuration, under Hardware, its a Pegasus/Pegasus II USB and yes, its Ethernet). The light on this is flashing, so I know connection is going into there.

 

I've tried pinging 192.168.0.1 in terminal and all I get back is "Network is unreachable". I've also tried the browser, can't connect.

 

I've logged into my router (which is a Netgear DG834G) and looked at connected devices and it only shows up as this desktop being connected.

 

Any idea's how I can get connected?

Print this item

  Installing Office 2003 on Suse 10.0
Posted by: Mario - 2006-03-26, 03:37 AM - Forum: Linux - No Replies


Installing Office 2003 with Crossover office.

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1344-1143344033.png" data-fileid="502">[img]<fileStore.core_Attachment>/post-1344-1143344033.png[/img]</a>

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1344-1143344063.png" data-fileid="503">[img]<fileStore.core_Attachment>/post-1344-1143344063.png[/img]</a>

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1344-1143344097.png" data-fileid="504">[img]<fileStore.core_Attachment>/post-1344-1143344097.png[/img]</a>

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1344-1143344186.png" data-fileid="505">[img]<fileStore.core_Attachment>/post-1344-1143344186.png[/img]</a>

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1344-1143344212.png" data-fileid="506">[img]<fileStore.core_Attachment>/post-1344-1143344212.png[/img]</a>



Attached Files
.png   installing_office_2003_on_suse.png (Size: 746.91 KB / Downloads: 0)
.png   Installing_Office_2003_2.png (Size: 580.73 KB / Downloads: 0)
.png   Microsoft_Excel_2003.png (Size: 504.86 KB / Downloads: 0)
.png   Microsoft_powerpoint_2003.png (Size: 510.23 KB / Downloads: 0)
.png   Microsoft_word_2003_in_Linux.png (Size: 428.14 KB / Downloads: 0)
Print this item

  added a new section
Posted by: anyweb - 2006-03-25, 10:42 PM - Forum: Site News - No Replies


i've added a new section to linux-noob.com forums called 'about to start using linux...'

 

[/url][url=<___base_url___>/index.php?showforum=91][/url][url=<___base_url___>/index.php?showforum=91]https://www.linux-noob.com/forums/index.php?showforum=91

 

i want it to be the place that people post when they are considering installing linux and want to know what they need to do, what to download, etc

 

please move topics from 'how do i' that are in this category to this new section

 

thanks !

Print this item

  setting resolution correctly on Intel 9xx chipsets...
Posted by: anyweb - 2006-03-25, 10:02 PM - Forum: Fedora Core Release 5 - Replies (1)


i'm trying to get this to run at 1400x1050 (native lcd resolution)

 

my chipset is seens as follows

 

Quote:[root@localhost ~]# lspci00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Proces sor to DRAM Controller (rev 03)

00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Exp ress Graphics Controller (rev 03)

00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML Express Gr aphics Controller (rev 03)

00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Ex press Port 1 (rev 03)

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) US B UHCI #1 (rev 03)

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) US B UHCI #2 (rev 03)

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) US B UHCI #3 (rev 03)

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) US B UHCI #4 (rev 03)

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) US B2 EHCI Controller (rev 03)

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d3)
 

and my laptop (a Dell Latitude D610) cannot display the correct resolution in Fedora Core Release 5 (it should be 1400x1050 and thats what i told xorg to run at, but it displays at 1024x768 and that looks out of focus)

 

so i'm trying out this vbios hack for intel 9xx chipsets [/url][url=http://www.geocities.com/stomljen/]http://www.geocities.com/stomljen/

 

read the readme and did as required and strangely it reports the following vbios modes

 



Code:
[root@localhost 915resolution-0.5.2]# 915resolution -l
Intel 800/900 Series VBIOS Hack : version 0.5.2

Chipset: 915GM
BIOS: TYPE 1
Mode Table Offset: $C0000 + $269
Mode Table Entries: 36

Mode 30 : 640x480, 8 bits/pixel
Mode 32 : 800x600, 8 bits/pixel
Mode 34 : 1024x768, 8 bits/pixel
Mode 38 : 1280x1024, 8 bits/pixel
Mode 3a : 1600x1200, 8 bits/pixel
Mode 3c : 1920x1440, 8 bits/pixel
Mode 41 : 640x480, 16 bits/pixel
Mode 43 : 800x600, 16 bits/pixel
Mode 45 : 1024x768, 16 bits/pixel
Mode 49 : 1280x1024, 16 bits/pixel
Mode 4b : 1600x1200, 16 bits/pixel
Mode 4d : 1920x1440, 16 bits/pixel
Mode 50 : 640x480, 32 bits/pixel
Mode 52 : 800x600, 32 bits/pixel
Mode 54 : 1024x768, 32 bits/pixel
Mode 58 : 1280x1024, 32 bits/pixel
Mode 5a : 1600x1200, 32 bits/pixel
Mode 5c : 1920x1440, 32 bits/pixel
[root@localhost 915resolution-0.5.2]#




 

why isn't 1400x1050 listed ???

anyway...

 

to try and force it i tried the following:-

 



Code:
[root@localhost 915resolution-0.5.2]# 915resolution 4b 1400 1050
Intel 800/900 Series VBIOS Hack : version 0.5.2

Chipset: 915GM
BIOS: TYPE 1
Mode Table Offset: $C0000 + $269
Mode Table Entries: 36

Patch mode 4b to resolution 1400x1050 complete




 

and restarted X

 

(ctrl_alt_backspace)

 

guess what happened ? it WORKED !!! kudos to the dude who wrote this !

 

screenshot :)

 

 

cheers

anyweb

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1143384597.png" data-fileid="507">[img]<fileStore.core_Attachment>/post-1-1143384597.png[/img]</a>



Attached Files
.png   Screenshot_12.png (Size: 335 KB / Downloads: 0)
Print this item

  Great Fedora 5 Installation Resource
Posted by: PHiSQuaRE - 2006-03-25, 08:23 PM - Forum: Fedora Core Release 5 - Replies (3)

...

Print this item