$ kdesu kedit /etc/X11/xorg.confThe "kedit /etc/X11/xorg.conf" part of the command is for opening the file in Kedit, but the "kdesu" that precedes that command triggers a box to pop up where you are asked to give the root-password. After you give the password Kedit will open with the file loaded and you can edit it ( as if you were root ).The same story goes for the "gksu" command if you are a Gnome user. It avoids error messages and allows you to run any GUI based tool as root without actually having to log out as "user" and log in as "root". . . . Using kdesu and gksu is a much safer practice.Keep your system safe.
Tips for Linux Explorers
#351 OFFLINE
Posted 11 September 2006 - 01:39 PM
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#352 OFFLINE
Posted 19 September 2006 - 01:21 PM
$ xmodmap -e "remove Lock = Caps_Lock"Now, there are a few ways to make this permanent, just pick the one that works best for you: 1). Add remove Lock = Caps_Lock to the /etc/X11/Xmodmap or the ~/.xmodmaprc file ( But in my Mandriva this did not help so see the next option )2). Make a bash script called nocapslock with the text:
Quote
$ chmod 755 nocapslockFinally if you run KDE place the script in /home/bruno/.kde/Autostart, if you run Gnome you can make a directory /usr/share/gnome/autostart and place the script in there and at next login you get a dialog that will ask you if you want to enable the script for future logins in Gnome.This should take care of disabling the Caps Lock key. But that is not all you can do, you could even give the Caps Lock key another function ( make it another Enter-key with "keycode 66 = Return" ) or even swap the Ctrl key with the Caps Lock key with the following script:
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#353 OFFLINE
Posted 03 October 2006 - 01:50 PM
Quote
$ wc -w test.txt184 Desktop/text.txtLines:
$ wc -l test.txt50 Desktop/text.txtCharacters:
$ wc -m test.txt1045 Desktop/text.txtLongest line:
$ wc -L test.txt118 Desktop/text.txtSure you can feed the "wc" command more then one file in a different format at once:
$ wc -w test.txt xgl.doc NewTips.txt post.kwd 184 test.txt 280 xgl.doc 209 NewTips.txt1161 post.kwd1834 totalAnd here is one to try at home . . . . cd to your Documents folder and do "wc -w *.odt" ( or "wc -w *.doc" if that is your preferred format )Isn't that fun . . . . . . at least you get the impression you weren't all that lazy after all . . . . ;)
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#354 OFFLINE
Posted 17 October 2006 - 02:46 PM
# rpm -ivh amarok-1.4.1-4mdk.i586.rpmUpgrading:
# rpm -Uvh amarok-1.4.1-4mdk.i586.rpmRemoving:
# rpm -e amarokBut now for the special tricks, did you know you can also let the rpm command download and install the file for you ? ( works on http and ftp )
# rpm -ivh http://kev.coolcavemen.com/static/repository/mandriva/2006.0/RPMS/amarok-1.4.1-4mdk.i586.rpmAnd that you can downgrade the package you installed ( because the new one has a bug ? ):
# rpm -Uvh --oldpackage amarok-1.3.1-3mdk.i586.rpmYou can get detailed information on the package before installing it:
# rpm -qip amarok-1.4.1-4mdk.i586.rpmThis even works on a file you did not yet download:
# rpm -qip http://kev.coolcavemen.com/static/repository/mandriva/2006.0/RPMS/amarok-1.4.1-4mdk.i586.rpmAlso, you can get a complete list of all the files a package will install:
# rpm -qlp amarok-1.4.1-4mdk.i586.rpmAnd sure this works on a file you have not yet download too:
# rpm -qlp http://kev.coolcavemen.com/static/repository/mandriva/2006.0/RPMS/amarok-1.4.1-4mdk.i586.rpmNow 4 commands to get some info on packages that are already installed . . . first put a complete listing in your /home:
# rpm -qa | sort -f > installed_rpms.txt( Note: There is a nice Tip at Distrowatch showing how to get a package list in other distros )Here is how you get info on a single package:
# rpm -qi amarokAnd a full list of the files belonging to an installed package:
# rpm -ql amarokFinally if you are curious what package installed a file you found on your computer:
# rpm -qf /usr/share/apps/zeroconf/_shoutcast._tcpWell, you'll have to admit, the rpm command is pretty versatile . . . . and there is more, just have a look at "man rpm" and you will see there is at least a hundred different options listed.
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#355 OFFLINE
Posted 21 October 2006 - 12:55 PM
<------- Click to enlargeThe default is US English, Press Next3rd screen: License agreement
<------- Click to enlargeSelect "accept" and Press Next4th screen: Is this an install or an upgrade ?
<------- Click to enlargeTick the box of "install" and Press Next. Advice: NEVER use Upgrade !!!5th screen: Security level
<------- Click to enlargeATTENTION: By default the security level is set to "high", change this to "Standard"Fill in "root" or your email address and Press Next6th screen: The DrakX Partitioning wizard found etc. etc.
<------- Click to enlarge- If you have your partitions already made: tick the box "use existing partitions" and Press Next- If you still have to make partitions, or want to change the size of the existing ones: tick the box "Custom Disk Partitioning" and Press Next You will be taken to the very intuitive and easy partitioning tool. Make a 6G partition for / and a 2G for /home.7th screen: Choose file Mount points
<------- Click to enlargeChose the partitions where you want / and /home and Press Next( Everybody using partitions for /tmp and /usr too . . you know what to do )8th screen: Choose the partitions you want to format
<------- Click to enlarge. . Leave the /home box unchecked if you want to keep your mail addresses and personal settings Press Next9th screen: Installation media
<------- Click to enlargeHere you are asked to check the installation media ( CDs, DVD ) only check those you have and Press Next10th screen: Packageshttp://brunolinux.net/Images/INSTALL_2007/2007-DRAKX-screenshots/7.png <------- Click to enlargeDo like in the screen shot: tick all the boxes on the left, KDE and Gnome on the right and Press NextNOTE: Including Gnome will also give you all the gnome programs you can also use in KDE . . so even if you intend to never use Gnome it is better to install it anyway.Now the install really starts. It takes about 16 minutes and you have to change CDs a few times* Will be continued in next post . . . . . .
#356 OFFLINE
Posted 21 October 2006 - 01:14 PM
<------- Click to enlargeFill in your root password twice and Press Next12th screen: Adding a user
<------- Click to enlargeFill in name twice and password twice and Press Accept user13th screen: Adding a user ( again )
<------- Click to enlargeHere you can add another user, or leave it empty and Press Next14th screen: Auto login
<------- Click to enlargeDe-select the box, you do not want this, and Press NextNOTE: It is safer to not use this feature, and it makes sure that you can choose at boot what window manager to start. Also if you ever get a corrupted /home directory the non-autologin makes fixing a lot easier.15th screen: Boot loader
<------- Click to enlargeSelect "First sector of drive ( MBR )" and Press NextNOTE: It will automatically include your Windows partition for dual boot16th screen: SummaryThis is very important . . check all the settings by clicking on the Configure button, look at the difference I have in the two screenshots:
<------- Click to enlargeBefore configuring
<------- Click to enlargeAfter configuringNOTE: While configuring the Graphic interface you can be pesented this sreeen:
<------- Click to enlargeIf you don't have a recent model Graphics card it is safer to uncheck "Enable translucency" and "Use hardware accelerated mouse pointer"( You could experiment with these settings any time after the install by running XFdrake )17th screen: UpdatesNOTE: This feature rarely works, you will have to do the updates in the MCC after the first reboot.So . . . say NO and Press Next18th screen: Complete. . remove your CD and Press Reboot- After the install:After the reboot you absolutely have to install: "anacron", and get the Updates ( see and subscribe to This thread )Additionally you can add: xmms, xmms-alsa, aumix, galeon, gkrellm, kedit, mplayer, xine etc. etc.NOTES: Here are a few quick bug-fixes.1). Fix LinDVD error:# cp /usr/share/lindvd/libivimandriva.so /usr/lib/# ldconfig2). KDE menu, errormessage when choosing "System" --> "Configuration" --> "Packaging" --> "Install, Remove and Update Software"The fix: Start up the menueditor and change the command in the relevant menu entry from "/usr/bin/drakconf --start-with=install-software" to "rpmdrake --root"3). Updatedb errorThe fix: Install mlocate ( will replace slocate )4). Problems with k3b when trying to burn a dvd iso. It is a conflict with available memory and growisofs v6.0The fix: Give the command "# ulimit -l unlimited" as root prior to starting k3b (as root) to burn dvd's.Also read the release notes: HereHave FUN !
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#357 OFFLINE
Posted 31 October 2006 - 02:22 PM
<------- Click to enlargeIf you are using existing partitions, do as in the screenshot and change the box to "Create custom layout" and Press Next4th screen: The partition tool
<------- Click to enlargeHighlight the partition you want to use and click the Edit button and you will see:
<------- Click to enlargeIn the pop-up select the mount point ( / ) and check the box to format the partition, then Press OK5th screen: Bootloader
<------- Click to enlargeATTENTION: If you want to add fedora to the bootloader of another distro, please install the fedora grub in the / partition: check the box "Configure advanced bootloader options" and Press NextIf you want to use the Fedora bootloader the default settings are fine.6th screen: Install the bootloader record onIn case you did choose "Configure advanced bootloader options" in the 5th screen you get:
<------- Click to enlargeHere you can check the box that will install the grub bootloader of Fedora in the / partition ( in the example above it is /dev/hda11 ) . . this way you can easily add it to the to the bootloader of the distro you are currently using. Press Next7th screen: Network Devices
<------- Click to enlargeIf you use DHCP . . . accept the default and Press Next8th screen: Location
<------- Click to enlargeThis is where I live . . . . Change yours to suit your location and Press Next9th screen: The Root Password
<------- Click to enlargeType in the root password twice and Press Next10th screen: Packageshttp://brunolinux.net/Images/fedora-6-screenshots/screenshot-0011.png <------- Click to enlargeDo like in the screen shot, "Office and Productivity" is checked by default, choose "Software development" as well and Press NextNOTE: If you want KDE, check the box "Customize now" and in the next screen you can check the box for KDENOTE 2: When choosing "Fedora Extras" you need a fast broadband connection because it will download a lot of files from the FTP server and this might be a major increase of the time your install will take.11th screen: Now the install really starts.http://brunolinux.net/Images/fedora-6-screenshots/screenshot-0012.png <------- Click to enlarge. . . when finished you have to reboot and after rebooting you will get Stage 2 of the install where it will let you create a user with user password.Have FUN !My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#358 OFFLINE
Posted 14 November 2006 - 02:20 PM
$ chsh -lThis commands will show you the shells that are mentioned in the /etc/shells file.On my distro the above command will show:
Quote
$ /bin/shand you will see the prompt changing to a different one ( again, on my system it shows: "sh-3.00$" ).You can change it back by simply giving the command:
$ /bin/bash2). For permanently changing the shell you can use the "chsh" command:
$ chsh -s /bin/shYou will be prompted for a password and for confirmation it will show you for what user you are changing the shell.Now, that was an easy one, wasn't it ?
$ ypchsh <user>and answer the questions.
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#359 OFFLINE
Posted 21 November 2006 - 05:58 PM
# urpmi.addmedia --wget "2007_main.release" ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/2007.0/i586/media/main/release/ with ./media_info/hdlist.czContrib:
# urpmi.addmedia --wget "2007_contrib.release" ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/2007.0/i586/media/contrib/release/ with ./media_info/hdlist.cz- BACKPORTS ( Warning: Only use with great care, can lead to dependency problems ! ) Main Backports:
# urpmi.addmedia --wget "2007_main.backports" ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/2007.0/i586/media/main/backports/ with ./media_info/hdlist.czContrib Backports:
# urpmi.addmedia --wget "2007_contrib.backports" ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/2007.0/i586/media/contrib/backports/ with ./media_info/hdlist.cz- TESTING ( Warning: Only use with great care, can lead to dependency problems ! ) Main Testing:
# urpmi.addmedia --wget "2007_main.testing" ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandriva/official/2007.0/i586/media/main/testing/ with ./media_info/hdlist.czContrib Testing:
# urpmi.addmedia --wget "2007_contrib.testing" ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandriva/official/2007.0/i586/media/contrib/testing/ with ./media_info/hdlist.cz- PLFPLF Free: ( Needs the Contrib source )
# urpmi.addmedia --wget "plf-free" ftp://ftp.free.fr/pub/Distributions_Linux/plf/mandrake/2007.0/free/release/binary/i586 with hdlist.czPLF Non-Free: ( Free to download and use, non-free as in licence ) ( Needs the Contrib source )
# urpmi.addmedia --wget "plf-nonfree" ftp://ftp.free.fr/pub/Distributions_Linux/plf/mandrake/2007.0/non-free/release/binary/i586 with hdlist.cz- PLF BACKPORTS ( Warning: Only use with great care, can lead to dependency problems ! ) PLF Free Backports:
# urpmi.addmedia --wget "plf-free-Backports" ftp://ftp.free.fr/pub/Distributions_Linux/plf/mandrake/2007.0/free/backports/binary/i586 with hdlist.czPLF Non-Free Backports:
# urpmi.addmedia --wget "plf-nonfree-Backports" ftp://ftp.free.fr/pub/Distributions_Linux/plf/mandrake/2007.0/non-free/backports/binary/i586 with hdlist.cz- EXTRAMandrivaClub-NL:
# urpmi.addmedia --wget "MandrivaClub.NL" ftp://ftp.nluug.nl/pub/os/Linux/distr/mandrakeclubnl/2007/i586 with hdlist.czEslrahc:
# urpmi.addmedia --wget "charles-edwards" http://www.eslrahc.com/2007.0/ with hdlist.czMandrivaUser-DE:
# urpmi.addmedia --wget "MandrivaUser.de" ftp://ftp.mandrivauser.de/rpm/GPL/2007/RPMS with hdlist.czSeerOfSouls: ( Warning: Only use with great care, can lead to dependency problems ! )
# urpmi.addmedia --wget seerofsouls http://seerofsouls.com/mandriva/2007/i586/main/ with hdlist.czThac: ( Warning: Only use with great care, can lead to dependency problems ! )
# urpmi.addmedia --wget Thac http://anorien.csc.warwick.ac.uk/mirrors/thac//2007.0/RPMS with hdlist.cz- CLUB >>> Only Mandriva Club-Members Club Commercial:
# urpmi.addmedia --wget "club.commercial_x86-32_2007" https://bruno%40forum.com:PASSWORD@dl.mandriva.com/rpm/comm/2007.0/i586/ with hdlist.cz( Do not forget to replace "bruno%40forum.com:PASSWORD" which are the login: <bruno@forum.com> and the <password> for the club . . the @ in your email address is replaced by a %40 )*** Club Testing:
# urpmi.addmedia --wget "club.testing_x86-32_2007" https://bruno%40forum.com:PASSWORD@dl.mandriva.com/rpm/test/2007.0/i586/ with hdlist.cz( Do not forget to replace "bruno%40forum.com:PASSWORD" which are the login: <bruno@forum.com> and the <password> for the club . . the @ in your email address is replaced by a %40 )*** Club Club:
# urpmi.addmedia --wget "club.club_x86-32_2007" https://bruno%40forum.com:PASSWORD@dl.mandriva.com/rpm/club/2007.0/i586/ with hdlist.cz( Do not forget to replace "bruno%40forum.com:PASSWORD" which are the login: <bruno@forum.com> and the <password> for the club . . the @ in your email address is replaced by a %40 )NOTE 2: The sources marked *** are not yet available !
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#360 OFFLINE
Posted 05 December 2006 - 02:40 PM
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#361 OFFLINE
Posted 16 January 2007 - 02:09 PM
$ tar -xvzf numlockx-1.1.tar.gz$ cd numlockx-1.1$ ./configure$ make$ su<password># make install# make xsetup# make xinitrcNext if you use the xfce window manager, edit the "/etc/X11/xinit/xinitrc.xfce4" file and put somewhere near the top of the file as first un-commented line:
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#362 OFFLINE
Posted 30 January 2007 - 02:27 PM
Quote
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#363 OFFLINE
Posted 27 February 2007 - 02:22 PM
Julia, on Forum 2006, said:
3. Click on Manage Entries. Then select the version of Vista you wish to remove. Click on the delete icon. Then press Save. When finished look for the Configure Tab.4. Click on Configure. At the top tell it your default "Windows" operating system. Then press save. At the bottom you may then click on that same operating system and change the name to what you want to call it. Do not, however, change the drive letter. Then click save.5. Exit out of Vista Boot Loader. When you reboot you will find that your Lilo is unchanged but now your windows entry will only lead to one entry rather than a second menu to give you options.My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#364 OFFLINE
Posted 26 March 2007 - 05:08 PM
# chmod u+s testfileIf you use chmod with numbers the number for SUID is 4000.An example what "ls -l" will show:
Quote
# chmod g+s testfileIf you use chmod with numbers the number for SGID is 2000.An example what "ls -l" will show:
Quote
# chmod +t testdirectoryIf you use chmod with numbers the number for the Stick Bit is 1000.An example what "ls -l" will show:
Quote
man chmod said:
# chattr +i testfileIn this case "ls -l" will show nothing special:
Quote
# lsattr testfileAn example of what "lsattr" will show:
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#365 OFFLINE
Posted 24 April 2007 - 01:26 PM
# dd if=xxxxx of=yyyyy bs=zzzzzz( Where if=xxxxx is the source, of=yyyyy is the target and bs= both read and write zzzzz bytes at a time )But as you might have guessed, the dd command it is much more than that, it can optionally convert data ( ASCII to EBCDIC ), skip blocks, continue after read errors, change uppercase letters to lowercase, etc, etc. ( type "info dd" in a terminal to get the full list of options )I will now give you a few examples of what dd can do, but I do urge you to have a look at the links posted below to get more detailed information before you really start experimenting with the dd command.Copy a hard disk partition to another hard disk:
# dd if=/dev/hda2 of=/dev/hdb2 bs=4096 conv=notrunc,noerrorCloning an entire hard disk:
# dd if=/dev/hda of=/dev/hdb conv=notrunc,noerrorCopy a disk partition to a file on a different partition. ( Do not copy a partition to the same partition ! ):
# dd if=/dev/hdb2 of=/home/bruno/partition.image bs=4096 conv=notrunc,noerrorRestore a disk partition from an image file:
# dd if=/home/bruno/partition.image of=/dev/hdb2 bs=4096 conv=notrunc,noerrorCopy MBR only of a hard drive:
# dd if=/dev/hda of=/home/bruno/MBR.image bs=446 count=1Reverse:
# dd if=/home/bruno/MBR.image of=/dev/hda bs=446 count=1Wipe a hard drive of all data ( you would want to boot from a cd to do this ):
# dd if=/dev/zero of=/dev/hda conv=notruncMake an iso image of a CD:
# dd if=/dev/hdc of=/home/bruno/TEST.iso bs=2048 conv=notrunc( CD sectors are 2048 bytes, so this copies sector for sector. )Copy a floppy disk:
# dd if=/dev/fd0 of=/home/bruno/floppy.image conv=notruncYou can back up your MBR ( including partition table ):
# dd if=/dev/hda of=mbr.bin count=1Put this on a floppy you make with:
# dd if=boot.img of=/dev/fd0Boot from the floppy and restore the MBR:
# dd if=mbr.bin of=/dev/hda count=1Again, I urge you to be very careful with the DD command . . . switching if= with of= can have catastrophic results.An extensive how-to of the dd command can be found here: Learn The DD Command Please read it before you start typing "dd" !!More info: Codecoffee and here: Tuxbrothers ( second section is in English )
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#366 OFFLINE
Posted 22 May 2007 - 02:19 AM
Quote
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#367 OFFLINE
Posted 05 June 2007 - 01:22 PM
Quote
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#368 OFFLINE
Posted 03 July 2007 - 01:17 PM
$ kdesu kwrite /usr/local/bin/ScreenShotScriptand in the file paste:
Quote
# chmod 775 /usr/local/bin/ScreenShotScriptFinally you make a new menu item with "kmenuedit", call it ScreenShotScript and in the box "command" write "/usr/local/bin/ScreenShotScript" ( deselect the box for "enable launch feedback" ) . . . . and in the dialog of kmenuedit you can re-assign the hotkey to the PrintScreen button.This way no dialog or feedback will pop up when you press the Print Screen key and you will find the screenshots nicely time stamped in /homeB) BrunoNOTE: the ` in the script are NOT ' or ´
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#369 OFFLINE
Posted 02 October 2007 - 01:26 PM
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#370 OFFLINE
Posted 30 October 2007 - 02:14 PM
# urpmq --list-mediaShows all the urpm repositories configured on your system
# urpmq --list-media activeOnly shows the active urpm repositories
# urpmq -i k3bInformation about the k3b package
# urpmq -f k3bShows the version and architecture of the k3b package
# urpmq --sources k3bWhat remote urpm repositories holds the k3b package
# urpmq --fuzzy k3bShows all packages on the urpm repositories with the name k3bURPMFThe command urpmf is a tool to search for a specific file in all installed/available packages on local and remote urpm repositories.
# urpmf kcutlabel.hWill show that the kcutlabel.h file is part of the k3b-devel package.
# urpmf --summary k3bShows which packages have the word "k3b" in their summary
# urpmf --provides k3bWill list which files are in the k3b package
# urpmf --requires k3bGives you which files are needed for to run k3b
# urpmf --conflicts k3bShows which files would conflict with k3b
# urpmf --size k3bWill show the size of the k3b package
# urpmf -m k3bShows which repositories have packages with k3b in the name of the packageIf you would like to know more about urpmi and the related commands have a look here: http://wiki.linuxque....org/wiki/Urpmi
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#371 OFFLINE
Posted 27 November 2007 - 02:27 PM
# ln -sf /usr/bin/vim /usr/bin/vi# cp /usr/share/vim/vim71/vimrc_example.vim /usr/share/vim/vimrcNOTE: The /vim71 in the command above is for the version of vi in Slackware 12.0 . . . . if you use another version of Slackware adapt the command to the version of vim installed.CD / DVDIn Slackware 12.0, whenever you insert a cd or dvd, konqueror asks if you want to open it and then you'll get the error:
Quote
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#372 OFFLINE
Posted 10 December 2008 - 03:27 AM
# urpmq --fuzzy gkrellmand it will find these packages on the mandriva urpm repositories:
Quote
# urpmq -i gkrellmand will see this
Quote
# urpmi gkrellmFor more special urpm tricks please read: urpmq and urpmf
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#373 OFFLINE
Posted 12 January 2009 - 02:24 PM
You see 2 tabs in the left top . . sda and sdb . . . representing the 2 hard disks I have in this computer. On sda you see in dark red the existing linux partitions ( the swap partition in green ) / is 21GB and /home is 39GB.On sdb, pictured below, you see that the 2nd hard disk has a windows partition and a large empty space ( the white part ).
Click on that empty space and you will see that you get a button in the right panel with the text: "Create" press the button:
In the popup you will get a few things that are very important:1). The size: grab the slider and make it large enough, minimum 7 to 10 GB for a Linux install.2). The Filesystem Type: make it "Journalised FS Ext3"3). The Mount point: make it look empty . . . so no mount point ! see pic below:
. . . . . yes, there is a "blank" option and that is the one to use !!Next press the "format" button and it will format the newly made partition.In general it is good practice to have a separate /home and swap partition so repeat the above to make additional partitions. ( 1 GB for the swap will do fine, the "Filesystem Type" is swap ) )Also here, assign no mount points, this will only be done later when installing the distro of choice.Finally press "Done" and you will see:
Press OK . . . close the main window and reboot to write the new partition table to disk.My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#374 OFFLINE
Posted 09 February 2009 - 02:21 PM
If in the right panel there is only one button, "Unmount": press that button:
After you pressed the unmount button there will be more buttons to choose from, one of them will be "Resize":
Press that button and you will get to see:
Just move the slider so the size of sdb1 is about 12 GB ( a few MB more or less is not important ) . . then press OKOkay that is it for now. We leave the empty space we made untouched for now because I first want to see what the damage is after the resize . . so we finish this off and press "Done", you might see:
Press OK . . . close the MCC and reboot into Windows to see if all is still okay.After you checked your Windows partition you reboot to the Live CD and can start making new partitions ( see Part 1 ) in the empty space we made.My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
#375 OFFLINE
Posted 12 January 2010 - 12:38 AM
My Hometown ~ Registered Linux User #299965 ~ LFS User #11450
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users


This topic is locked





