Merging Partitions - forgot to preserve permissions

Hello Archers,
Recently I was merging some partitions on my drive, and stupidly forgot to preserve the permissions when using cp. It seems that all files are now owned by root 755. I have fixed my home directory permissions, but it seems there are a whole bunch of other directories/files on system that need to have different ownership and are screwing things up (/tmp and /var/log for example) is there some sort of list of proper file permissions for arch? or some way to set these back to the way they are supposed to be? I can't even start X because of these permission problems(it works fine on root).
Thanks for any help,
Perogy

You might perhaps restore many of the permissions by forcing pacman to reinstall all your packages, but you would still have to change permissions of /tmp, /var, and so on manually.

Similar Messages

  • Forgot to 'Preserve New User' in Archive and Install

    I archived and installed the other day and forgot to 'preserve new user' while doing it. Now when I log in, there is nothing anywhere on the desktop. No HD, no finder, no links to app's, just the blue background. I have no idea where to go from here, I've tried numerous ideas and nothing has worked. Including running DW, repairing permissions, repairing disk, reseting the Mac Mini, booting with no devices attached, even re-installing. Is there maybe a terminal command to move files to the desktop that can be used? I have so much important stuff, I really should have made a back up by now.
    Thanks for helping.

    Hi,
    yeah when i put * in the set online filter i am able to see the users which i have created in weblogic. After all the users appear then i select Action-> close. Now again when i try to cross check it once again i again clicked on manage->indentity->now i dont see the users. what could be the issue?
    Thanks,
    RM

  • How to merge partitions in Windows Server 2008 quickly and effectively?

    How to merge partitions in Windows Server 2008 quickly and effectively?

    Hi,
    In Windows systems we can only extend a partition to unallocated space behind it - so if we have 2 consistent partitions, we can only delete the second one and extend the first one.
    If the 2 partitions are on 2 different disks, you can also create a spanned volume - you will still need to delete the second partition and convert both disks to dynamic disk to create the spanned volume. 
    If you have any feedback on our support, please send to [email protected]

  • Merging partition into NEW partition

    I need to merge some range partition into a new big one,
    something like
    ALTER TABLE sales
    MERGE PARTITIONS sales_q4_2000, sales_q4_2000b
    INTO PARTITION sales_q4_2000;
    My question is: How should I specify the tablespace for the NEW partition name ?
    The following is my table definition:
    CREATE TABLE "TEST"
    (     "DAILY" DATE,
         "ID_TEST" NUMBER
    TABLESPACE "TBL_DEFAULT_SLIDE"
    PARTITION BY RANGE ("DAILY")
    (PARTITION "PART_PAST" VALUES LESS THAN (TO_DATE(' 2008-08-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_PAST_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_08_01" VALUES LESS THAN (TO_DATE(' 2008-08-02 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_08_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_08_16" VALUES LESS THAN (TO_DATE(' 2008-08-17 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_08_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_08_31" VALUES LESS THAN (TO_DATE(' 2008-09-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_08_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_09_01" VALUES LESS THAN (TO_DATE(' 2008-09-02 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_09_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_09_16" VALUES LESS THAN (TO_DATE(' 2008-09-17 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_09_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_09_30" VALUES LESS THAN (TO_DATE(' 2008-10-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_09_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_10_01" VALUES LESS THAN (TO_DATE(' 2008-10-02 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_10_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_10_16" VALUES LESS THAN (TO_DATE(' 2008-10-17 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_10_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_10_31" VALUES LESS THAN (TO_DATE(' 2008-11-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_10_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_11_01" VALUES LESS THAN (TO_DATE(' 2008-11-02 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_11_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_11_16" VALUES LESS THAN (TO_DATE(' 2008-11-17 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_11_SLIDE" NOCOMPRESS ,
    PARTITION "PART_2008_11_30" VALUES LESS THAN (TO_DATE(' 2008-12-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    TABLESPACE "PART_2008_11_SLIDE" NOCOMPRESS ,
    PARTITION "PART_FUTURE" VALUES LESS THAN (MAXVALUE)
    TABLESPACE "PART_FUTURE_SLIDE" NOCOMPRESS ) ;
    I'm trying to execute (where PART_2008_08 is a new partition, never used or created, so with no tablespace)
    ALTER TABLE TEST
    MERGE PARTITIONS PART_2008_08_01, PART_2008_08_16, PART_2008_08_31
    INTO PARTITION PART_2008_08 TABLESPACE PART_2008_08_SLIDED;
    or
    (in this example where I don't specify the tablespace and according to SQL Reference [merge_table_partitions|http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_3001.htm#i2114069] it should create the new partition whereas any attributes are inherited from table-level defaults so it should create the NEW partition on TABLESPACE "TBL_DEFAULT_SLIDE".)
    ALTER TABLE TEST
    MERGE PARTITIONS PART_2008_08_01, PART_2008_08_16, PART_2008_08_31
    INTO PARTITION PART_2008_08;
    but both are failing with ORA-14126.
    What am I missing ?
    Edited by: marcopb on Nov 28, 2008 12:39 PM

    marcopb wrote:
    I need to merge some range partition into a new big one,
    something like
    ALTER TABLE sales
    MERGE PARTITIONS sales_q4_2000, sales_q4_2000b
    INTO PARTITION sales_q4_2000;
    My question is: How should I specify the tablespace for the NEW partition name ?
    I'm trying to execute (where PART_2008_08 is a new partition, never used or created, so with no tablespace)
    ALTER TABLE TEST
    MERGE PARTITIONS PART_2008_08_01, PART_2008_08_16, PART_2008_08_31
    INTO PARTITION PART_2008_08 TABLESPACE PART_2008_08_SLIDED;
    or
    (in this example where I don't specify the tablespace and according to SQL Reference [merge_table_partitions|http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_3001.htm#i2114069] it should create the new partition whereas any attributes are inherited from table-level defaults so it should create the NEW partition on TABLESPACE "TBL_DEFAULT_SLIDE".)
    ALTER TABLE TEST
    MERGE PARTITIONS PART_2008_08_01, PART_2008_08_16, PART_2008_08_31
    INTO PARTITION PART_2008_08;
    but both are failing with ORA-14126.
    What am I missing ?I haven't tested your example but I think that you can merge only TWO partitions in one merge operation, so if you attempt to merge three partitions you need actually to perform this in two steps rather than in a single step. In addition in case of range partitions these have to adjacent to be merged, but this seems to be the case in your example.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Failed to revert logical volume group while merging partition

    Hi All,
    Previously, on my macbook pro, I partitioned my disk for win7 for my dual operation system and only left 120 GB for OS, now I want to delete win7 and return disk space to OS. Currently my OS is yosemite.
    I have already deleted disk space for win7 and merged it back to disk0s3. And, I had a problem to merge disk0s2 with disk0s3.
    I was told it is because I need to revet my Logical Volume Group. I am blocked at reverting it.
    This is my disk info:
    rescomp-14-251133:~ rico$ diskutil list; diskutil  cs list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *500.1 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         119.3 GB   disk0s2
       3:                  Apple_HFS Recovery HD             380.6 GB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Macintosh HD           *119.0 GB   disk1
                                     Logical Volume on disk0s2
                                     CC457129-6FE9-41A0-B0D2-F547F21A7555
                                     Unencrypted
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group F454017F-C531-43BA-B270-E2058E05BFF4
        =========================================================
        Name:         Macintosh HD
        Status:       Online
        Size:         119290187776 B (119.3 GB)
        Free Space:   4096 B (4.1 KB)
        |
        +-< Physical Volume AC7A2748-0DA1-49D6-B50C-30348838760E
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     119290187776 B (119.3 GB)
        |
        +-> Logical Volume Family 4B7E6277-69BC-475A-BBB7-7A94D6434D9E
            Encryption Status:       Unlocked
            Encryption Type:         AES-XTS
            Conversion Status:       Converting
            Conversion Direction:    -none-
            Has Encrypted Extents:   Yes
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume CC457129-6FE9-41A0-B0D2-F547F21A7555
                Disk:                  disk1
                Status:                Online
                Size (Total):          118954639360 B (119.0 GB)
                Conversion Progress:   -none-
                Revertible:            Yes (unlock and decryption required)
                LV Name:               Macintosh HD
                Volume Name:           Macintosh HD
                Content Hint:          Apple_HFS
    when I type unlock:
    rescomp-14-251133:~ rico$ diskutil corestorage unlockVolume CC457129-6FE9-41A0-B0D2-F547F21A7555 -stdinpassphrase
    CC457129-6FE9-41A0-B0D2-F547F21A7555 is already unlocked and is attached as disk1
    It is already unlocked
    then, I tried revert it
    rescomp-14-251133:~ rico$ diskutil coreStorage revert CC457129-6FE9-41A0-B0D2-F547F21A7555
    Passphrase:
    Started CoreStorage operation on disk1 Macintosh HD
    Error: -69750: Unable to modify a FileVault context
    Does anyone how I can revert it, then merge disk0s2 and disk0s3

    Here is another try via the command line:
    dhcp-10-201-238-248:~ KyleWLawrence$ diskutil coreStorage resizeVolume BB2662B7-58F3-401C-B889-F264D79E68B4 210g
    Started CoreStorage operation
    Checking file system
    Performing live verification
    Checking Journaled HFS Plus volume
    Checking extents overflow file
    Checking catalog file
    Incorrect block count for file 2012.12.11.asl
    (It should be 390 instead of 195)
    Checking multi-linked files
    Checking catalog hierarchy
    Checking extended attributes file
    Checking volume bitmap
    Checking volume information
    Invalid volume free block count
    (It should be 21713521 instead of 21713716)
    The volume MAC OS X was found corrupt and needs to be repaired
    Error: -69845: File system verify or repair failed

  • How to merge partitions in Windows 7 ?

    Hi,
    i have partitions C and D. My problem in that C is smoler than D. How can i move some space to C from D or to merge this partitions?
    Thanks in advance,

    I’m assuming D is just a data partition and doesn’t contain the page file, boot files or a second operating system. If so, merge the partitions by removing D and extending C, as follows:
    1. Back up to an external device any important data on D and, optionally, move the same important data from D to C.
    2. Right-click Computer > Manage > Storage > Disk Management, then right-click the graphic of the D partition and select Delete. The partition returns to Unallocated for a Primary Partition or Free Space if it‘s a Logical Drive within an Extended
    Partition. Delete the partition if it is an Extended partition.
    3. Now right-click the graphic of the C partition and select Extend.
    I just had to restore an HP with Window 7 Pro using their factory supplied restoration discs. At no time did the set up ask me about formating or patitions. It overrode the primary parition I created and it ended up setting up 4. The 1st is a
    system area, 2nd is the HP backup partition, 3rd is C: and the 4th unallocated. C is only 100gb, the 4th has the remaining of the 1tb drive.
    Right clicking on C: within the manager and "Extend" is grayed out. 

  • Merge PDF files into (preserving layer info)

    Is it possible to combine several PDF files into one and preserve the layers of each source PDF into the merged one ?

    ... not sure SSIS is the correct tool for you unless you're already using it or have other tasks to perform besides merging pdf files.
    There is no functionality like that available out of the box, but if you have the right (third party) .Net assemblies then you could use SSIS (Script Task/Component). An other option is to call a tool/batch file via the execute process task.
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

  • Unable to Merge Partition

    Dear Apple Community,
    I am having issues merging the partition on my Macbook Pro.
    I created a separate partition of 50GB to install and test OS X Yosemite Beta (Macintosh HD 2).
    After playing around with it, I decided to remove the partition created.
    Now, I would like to regain the 50GB that I used to partition for Yosemite - note the empty grey space between Macintosh HD and Bootcamp.
    From my understanding, I should be able to just drag the bottom corner of the partition lay out in order to regain the 50GB that was set aside.
    However, after I click apply, nothing happens and it reverts back to:
    I've also tried doing by via the Recovery HD (rebooting and holding down alt) with no success.
    Am I doing something wrong? I don't want to do a fresh install
    Any help or advice would be greatly appreciated.
    Sincerely,
    David

    Thanks for your clarification, Drew.
    When I boot up in recovery mode (cmd+r) I am able to load up disk utility however, I essentially go through the same process as in the first post.
    From my understanding, I believe what you have said is completely correct. After attempting to resize the partition, I get prompted with a pop up display that states: "Partition failed. Partition failed with the error. Couldn't unmount disk."
    Unfortunately, I don't have any boot up disks. I have only been backing up those important files onto an external HDD. If you don't mind me asking, which of the methods would you advise as being the one most likely to solve this partition issue, and least time consuming? I'm actually not too fussed about reformatting anymore.
    Oh yes, I am running 10.9 and not 10.6. I noticed this afterwards but was unable to figure out how to move this thread. Apologies as this was my first time on the forum.
    Thanks again.

  • Partitioned External Hard Drive - Permissions.

    I have an external hard drive that is partitioned into two volumes. Recently one of the volumes has not been showing on the desktop. I tried repairing and verifying the drive with Dick Utility (this second partition is visible with a generic icon) and says everything is okay. I think this might be a permissions issue - this problem appeared shortly after changed volume permisions for differnt users. Problem is no user can see the drive (Admin or others). Is there any way to revert, delete or fix this so that I can access the second volume?
    Running Mac OS X 10.4.11
    Thanks for your Help.

    Running Mac OS X 10.4.11
    This is the Leopard forum.
    For future reference, the Tiger forum is here:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.4_tiger?categoryID=1 77

  • PRESERVING PERMISSIONS - when making an external boot drive

    hi
    Someone in a previous thread i posted some time ago mentioned that i need to make sure my premissions are preserved when i come round to creating an external boot volume on my external lacie hd.
    1. I think he was refering to the 'ignore permissions' check box in 'info' ? but i
    am unsure what to do here re; to check it or leave it unchecked.
    2. can anyone explain what this means so i can understand the logic of the
    permissions instruction ?
    thanks for your time
    didier
    eMac 800MHz Power PC G4 Superdrive   Mac OS X (10.3.8)  

    Hi
    martinR
    Thats becoming alot clearer......
    A couple of things
    1. If i must leave the 'ignore permissions' box unchecked for the bootable volume i create, then what permissions selection should i have selected in the drop down menu box above it ? I am assuming 'read and write.' ?
    2. i'm assuming that after answering this...if i set it all up, when i come to booting from the external volume it will ask my for my password and user name , as is common, and that is what you refer to when you mention the os x security.
    Just out of interest:
    3 what is an administrator - like for if i want to use the terminal there's this thing about needing to be an administrator.........?
    4 by the way, since this site has been redesigned i noticed this week that i didn't get any emails telling me that replies had been posted to my questions.
    Could you just confirm that i must have in my settings :
    Always subscribe to topics I create: set to Yes (this were on default - no)
    Always subscribe to topics I reply to: set to Yes (this was on default - no)
    Send subscription emails: set to , in my case - immediately.
    sorry to bug you, it's just i recognise your name from previous posts i have made so thought you may be a bit of a pro
    thanks 4 yr time
    d

  • Moving Public from G4 XServe to new Intel XServe and preserve permissions

    We have purchased a new Intel XServe (10.4.8) and need to move the Public folder and Users folder from our old XServe G4 (10.3.9) to the new one, and would like to preserve the permissions.
    Both of these are OD replicas; there is an XServe G5 (10.3.9) which is the OD Master.
    Apple Tech support tells me it is not possible.
    I have tried ditto, tar, scp, and a Finder copy to an external FireWire drive. None of these attempts have successfully preserved the permissions.
    tar cf - * | (cd /target; tar xfp -)
    ditto -rsrc /oldpath /newpath
    I have searched the archives, but not found any answers.

    Thank you for the link - I will try Dan's tar syntax tomorrow (and hope there are no differences with 10.3.9).
    /usr/bin/tar -cvf - xyzzy | /usr/bin/tar -C target -xvf -
    I also like his hint about handling remote files.

  • Problem with merging partitions

    Hi all,
    I am having a bit of trouble partitioning the HD on the MBP. I hope you guys can help me. I would like to reformat the drive and have made a partition entitled "Backup" (see image link above) to store the files I need. 
    Now, I would like to merge "Macintosh HD" and "Macintosh HD 2" together but it won't do it. I have tried in recovery mode and I have tried deleting Mac HD 2 and pulling down Mac HD. Both methods did not work. Appreciate any help. Thank you and sorry if this problem has been posted in the forum.

    Something is messed up in the partition map which means you will have to repartition the entire drive from scratch.
    Drive Partition and Format
    1. Boot from a bootable external drive. Open Disk Utility.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Apply button and wait until the process has completed.

  • Merge partition on old iMac

    I bought a 2007 iMac form eBay.
    It is running Mac OS 10.6.8
    The hard drive is split into Mac1 (50gb) and Mac2 (128gb)
    I use Mac2 as my start up disc and have loaded Photoshop etc and store files on this partition.
    But I feel like I am wasting 50gb.
    I'm not sure why the Mac has been configured like this.
    Is there a way to merge the two partitions?
    I noticed in Disk Utilities that there is no PARTITION tab, just First Aid, Erase, RAID and Restore.
    Many thanks, Brion

    No. You'll have clone Mac2 to an ext HD, erase and reformat the int HD into one partition, and restore the clone to it. Ensure that you can boot the machine with the clone before wiping the int HD.

  • Merge partitions without loosing TM backups?

    I have a 1 tb external hdd which I split into two partitions of 700gb and 300 gb. the 700 one is for TM backups and the 300 one for my movies and videos. Now I dont need the 300 one so i reformatted it into a mac friendly format, same as that of the TM. when i opt to make these two partitions into a single one, in disk utility, it gives me a warning saying all the data in both the partitions will be erased!
    i dont want this to happen. i want to merge the 300 gb free space into the 700 gb TM partition and still want to retain my tm backups. anyway to do it?
    Neerav

    Hi Linc,
    I got two drives at my disposal. One is this 1 TB that I'm talking about and the other is a 320 GB which i transferred all my movies to from my 300 GB partition.
    I guess I'll request a friend to carry in his HDD with sufficient free space to clone the tm partition and then format the 1 tb hdd and then reclone the tm backups to 1 tb.
    Lets see if this work. You know of a good cloning tool that doesn't break the integrity of the TM backups? or should i just copy the top most folder to a different drive?
    Neerav

  • Advice on merging partitions

    I have been trying to find the appropriate sub-forum for this...but most don't match..so I am just gonna post here. If a mod thinks it needs a moving...well..a mods gotta do, what a mods gotta do !
    This is my disk structure
    inxs ~ > fdisk
    Password:
    Disk /dev/sda: 30.0 GB, 30005821440 bytes
    255 heads, 63 sectors/track, 3648 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x00000080
    Device Boot Start End Blocks Id System
    /dev/sda1 1 1779 14289786 5 Extended
    /dev/sda2 1780 2714 7510387+ 83 Linux
    /dev/sda3 2715 3648 7502355 83 Linux
    /dev/sda5 1 8 64197 83 Linux
    /dev/sda6 9 16 64228+ 83 Linux
    /dev/sda7 17 212 1574338+ 83 Linux
    /dev/sda8 213 408 1574338+ 83 Linux
    /dev/sda9 409 1061 5245191 83 Linux
    /dev/sda10 1062 1714 5245191 83 Linux
    /dev/sda11 1715 1779 522081 82 Linux swap / Solaris
    inxs ~ >
    and this is my used partitions for Arch
    inxs ~ > df
    Filesystem Size Used Avail Use% Mounted on
    /dev/sda10 5.0G 1.8G 3.0G 37% /
    none 125M 0 125M 0% /dev/shm
    /dev/sda6 61M 9.8M 48M 17% /boot
    /dev/sda8 1.6G 137M 1.4G 9% /var
    /dev/sda2 7.2G 411M 6.4G 6% /home
    inxs ~ >
    So you see all even numbered drives are for Arch and odd ones were for Debian --- Yeah, it was a smartass idea I had when I created the dual boot, so that both my /boot partitions would be at the start of the hard drive thereby enabling a faster boot. Maybe its made a difference, who knows !!
    I created a dual boot because I came over from Ubuntu 5.10 >> Debian Lenny >> Arch. So I had some sentimental attachment to a deb based distro and apt ;-)
    Infact I used to prefer apt over pacman when I first moved to Arch - probably because I didn't know all that pacman could do.
    Anyway, over time, I have realized that I boot into Debian very less and in the last few months I have booted into it ONCE -- just to update it.  and also the login manager thread has given me the idea of having different runlevels run different WM's. That way I can use fluxbox too and openbox too
    So I am thinking I will get rid of it and get all the diskspace for Arch. What would be the best way to do it? Delete the debian partitions and merge them with the Arch ones? or simply whack the whole thing and install Arch all over?
    The dual boot has helped me at times when the Arch kernel update screwed up the system, I could go into Debian and rectify things...but I guess I can always use a live CD for that - and those things occur once in a while

    I want to use fluxbox and openbox on my Arch install. I read about starting different WMs on different runlevels, but I was wondering if the following in bash_profile would do the same
    if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/vc/1 ]]; then
    xinit /usr/bin/openbox
    logout
    fi
    if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/vc/2 ]]; then
    xinit /usr/bin/fluxbox
    logout
    fi
    That way, if I login at tty1, openbox starts up and on tty2 fluxbox does. This gives us a max of 6 different WMs installed at the same time. Although I would rather use at least 1 tty for console. So 5 + 1
    My question is will this work? I ask because I haven't installed other WM's yet, because I am still unsure if I want to mix all the config files of different WMs under the same home......maybe I will create a different user for fluxbox, but that means that I will have to configure all the apps twice in both usernames, correct?
    Last edited by Inxsible (2009-02-04 20:34:07)

Maybe you are looking for

  • Activity type in time sheet

    Hi all, In PS we donu2019t capture any cost. In such case, While entering timesheet, the system through an error message, to enter sender Activity type and it is not allowing to enter timesheet. Now, what should be done to skip entering activity type

  • Free Premium Channels for 3 Months

    On Saturday 11/13/2010 I was contacted by telephone that the 10 premium channels package was being added to my FIOS package for free for 3 Months. As of today 11/17/2010 no channels have been added. If for some reason I am not illegible for this pack

  • How to build a time stamp from a string

    I have the date-time information stored in a string and I want to build a time stamp to make a plot with the date-time in the X axys. Is there a way to do this?? thanking in advance... crimolvic

  • Spanish Character Sets Garbled

    We have a client that is trying to use Contribute CS4 to edit some pages with Spanish content.  The chacter sets show up correctly when viewing in Contribute but after publishing -- they are all garbled. The reading I've done online consists of peopl

  • AVCHD Log and Transfer Woes.  Please advise.

    Folks, I am using the latest version of FInal Cut (7.02) to log and transfer AVCHD content from a Panasonic Lumix GH1. Many clips get imported but many stop with errors ( a stream error as note by a exclamation mark in a red alert icon in the status