Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.misc > #36951

Re: Gparted questions

From Jack Strangio <jackstrangio@yahoo.com>
Newsgroups comp.os.linux.misc
Subject Re: Gparted questions
Date 2023-02-08 02:46 +0000
Organization North Star Horizon Builders Club
Message-ID <rpqq6C.4DD@yahoo.com> (permalink)
References <tr9n6a$kbk$1@reader2.panix.com>

Show all headers | View raw


vjp2.at@at.BioStrategist.dot.dot.com writes:
> 
> How do you put a partition inside a partition?
> 

A partition, or a filesystem??

We tend to use both of these terms interchangeably, but they ARE NOT THE
SAME THING.

Normally we fill a disk-partition with just one filesystem, though  MBR
'extended partitions' can hold several 'logical partitions'.

This most likely what you wanted the answer to, but you CAN put a 'partition' within a
partition by formatting a normal file as a filesystem.

So (for instance) you might have a 100MB partition that hold ten 10 MB
files, each of which holds a filesystem and each of those can be mounted
just like a disk-partition can be mounted.

====================================
#!/bin/bash
#jvs script "loopmount"
# mounts .iso image file on /cd
# mounts filesystem-file on mount-point
#
if [ "$2" != "" ]; then
        MOUNTPOUNT=$2
else
        MOUNTPOUNT=/cd
fi

if [ "$3" != "" ]; then
        TYPE=$3
else
        TYPE=iso9660
fi

if [ -z $1 ]; then
        echo "usage: loopmount   <imagefile-name>  ( will be mounted on /cd )  (will be iso9660)"
        echo "       loopmount   <imagefile-name>    <mount-point>              <filesystem type>"
else
        LOOP=$(sudo losetup --find --show $1)
        echo "sudo /bin/mount -t${TYPE} -oloop $LOOP  $MOUNTPOUNT"
        sudo /bin/mount -t${TYPE} -oloop $LOOP $MOUNTPOUNT
fi
====================================

Regards,

Jack
-- 
My wife says I have two faults:
I don't listen and something else.

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Gparted questions vjp2.at@at.BioStrategist.dot.dot.com - 2023-01-31 00:25 +0000
  Re: Gparted questions Rockinghorse Winner <Rockinghorse@amgen.com> - 2023-01-31 01:59 +0000
  Re: Gparted questions Bobbie Sellers <bliss@mouse-potato.com> - 2023-01-30 17:59 -0800
    Re: Gparted questions Andreas Kohlbach <ank@spamfence.net> - 2023-01-31 11:32 -0500
  Re: Gparted questions Marco Moock <mo01@posteo.de> - 2023-01-31 07:41 +0100
    Re: Gparted questions The Natural Philosopher <tnp@invalid.invalid> - 2023-01-31 10:04 +0000
  Re: Gparted questions vjp2.at@at.BioStrategist.dot.dot.com - 2023-01-31 18:11 +0000
    Re: Gparted questions Tauno Voipio <tauno.voipio@notused.fi.invalid> - 2023-01-31 20:25 +0200
      Re: Gparted questions The Natural Philosopher <tnp@invalid.invalid> - 2023-01-31 18:28 +0000
        Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-03 00:57 -0500
    Re: Gparted questions Marco Moock <mo01@posteo.de> - 2023-01-31 20:18 +0100
      Re: Gparted questions The Natural Philosopher <tnp@invalid.invalid> - 2023-02-01 10:44 +0000
    Re: Gparted questions Bobbie Sellers <bliss@mouse-potato.com> - 2023-01-31 11:30 -0800
  Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-01 00:30 -0500
    Re: Gparted questions Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2023-02-01 18:03 +0000
      Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-01 22:38 -0500
        Re: Gparted questions Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2023-02-02 04:01 +0000
          Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-02 00:17 -0500
            Re: Gparted questions Jim Jackson <jj@franjam.org.uk> - 2023-02-02 14:28 +0000
              Re: Gparted questions Andreas Kohlbach <ank@spamfence.net> - 2023-02-02 15:14 -0500
                Re: Gparted questions Jim Jackson <jj@franjam.org.uk> - 2023-02-02 20:44 +0000
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-02 22:55 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-03 00:24 -0500
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-03 14:20 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 00:51 -0500
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-04 16:17 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 23:14 -0500
                Re: Gparted questions The Natural Philosopher <tnp@invalid.invalid> - 2023-02-05 08:32 +0000
                Re: Gparted questions Dan Espen <dan1espen@gmail.com> - 2023-02-03 10:14 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 00:56 -0500
                Re: Gparted questions Fritz Wuehler <fritz@spamexpire-202302.rodent.frell.theremailer.net> - 2023-02-04 14:35 +0000
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-04 16:20 +0000
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-04 16:19 +0000
              Re: Gparted questions Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2023-02-02 21:28 +0000
                Re: Gparted questions Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2023-02-02 22:48 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-03 00:46 -0500
                Re: Gparted questions Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2023-02-04 01:35 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 01:48 -0500
                Re: Gparted questions Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2023-02-05 18:11 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-05 23:26 -0500
                Re: Gparted questions Bobbie Sellers <bliss@mouse-potato.com> - 2023-02-05 22:12 -0800
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-08 01:11 -0500
                Re: Gparted questions The Natural Philosopher <tnp@invalid.invalid> - 2023-02-03 08:50 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 01:53 -0500
              Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-03 00:23 -0500
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-03 14:23 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-05 23:46 -0500
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-06 05:03 +0000
                Re: Gparted questions Dan Espen <dan1espen@gmail.com> - 2023-02-06 22:05 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-07 00:23 -0500
                Re: Gparted questions Dan Espen <dan1espen@gmail.com> - 2023-02-07 07:39 -0500
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-07 13:53 +0000
                Re: Gparted questions Dan Espen <dan1espen@gmail.com> - 2023-02-07 09:42 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-08 01:15 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-08 00:22 -0500
                Re: Gparted questions Richard Kettlewell <invalid@invalid.invalid> - 2023-02-08 08:45 +0000
                Re: Gparted questions Dan Espen <dan1espen@gmail.com> - 2023-02-08 11:34 -0500
                Re: Gparted questions Richard Kettlewell <invalid@invalid.invalid> - 2023-02-08 17:18 +0000
                Re: Gparted questions Dan Espen <dan1espen@gmail.com> - 2023-02-08 13:34 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-08 22:27 -0500
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-07 13:51 +0000
                Re: Gparted questions Jim Jackson <jj@franjam.org.uk> - 2023-02-03 19:00 +0000
                Re: Gparted questions "Carlos E.R." <robin_listas@es.invalid> - 2023-02-03 20:33 +0100
                Re: Gparted questions Fritz Wuehler <fritz@spamexpire-202302.rodent.frell.theremailer.net> - 2023-02-04 02:07 +0100
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-06 00:04 -0500
                Re: Gparted questions Dudete deSpélècz <dudete@never.you.mind.invalid> - 2023-02-04 19:27 +0000
                Re: Gparted questions Rich <rich@example.invalid> - 2023-02-04 19:52 +0000
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 22:00 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 21:56 -0500
                Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 21:57 -0500
          Re: Gparted questions "Carlos E. R." <robin_listas@es.invalid> - 2023-02-02 13:22 +0100
          Re: Gparted questions pH <wNOSPAMp@gmail.org> - 2023-02-04 02:40 +0000
            Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-04 23:03 -0500
    Re: Gparted questions "Carlos E. R." <robin_listas@es.invalid> - 2023-02-02 13:02 +0100
      Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-03 00:50 -0500
  Re: Gparted questions Jack Strangio  <jackstrangio@yahoo.com> - 2023-02-08 02:46 +0000
    Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-08 01:28 -0500
      Re: Gparted questions Bobbie Sellers <bliss@mouse-potato.com> - 2023-02-08 19:55 -0800
        Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-10 00:24 -0500
          Re: Gparted questions Rich <rich@example.invalid> - 2023-02-10 14:08 +0000
            Re: Gparted questions "Carlos E.R." <robin_listas@es.invalid> - 2023-02-10 22:47 +0100
            Re: Gparted questions "26C.Z968" <26C.Z968@noaada.net> - 2023-02-11 01:50 -0500
              Re: Gparted questions The Natural Philosopher <tnp@invalid.invalid> - 2023-02-11 08:25 +0000

csiph-web