i3 and CLI Questions

Forum rules
We don't support installations in VirtualBox, VMWare, qemu or others. We ignore posts about WINE, PlayOnLinux, Steam and Skype. We don't support btrfs, lvm, UEFI, side-by-side installations with GPT or dualboot with anything newer than Windows XP.
Google your problem first. Check the Wiki. Read the existing threads. It's okay to "hijack" an existing thread, yes! If your problem is not yet covered, open a new thread. To get the quickest possible help, mention the exact release codename in your post (uname -a is a good idea, too). Due to the lack of crystal balls, attach the output of lspci -nnk if you encounter hardware problems.
User avatar
elixir
Weight Watcher
Posts: 357
Joined: Fri Feb 21, 2014 8:25 am

Re: i3 and CLI Questions

Unread post by elixir » Sun Feb 23, 2014 11:40 pm

Back to i3 though, how would I partition LinuxBBQ Elixir to my harddrive if I am running a live USB version of it?
Out of the corner of your eye you spot him... Shia LaBeouf.

https://www.youtube.com/watch?v=o0u4M6vppCI

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: i3 and CLI Questions

Unread post by machinebacon » Mon Feb 24, 2014 1:56 am

I need to know your actual geometries (of your hard drive/s), so please:

- open a terminal
- enter these commands and post the output here, between [ code ] and [ /code ] tags:

Code: Select all

sudo parted -l
sudo blkid -o list
If you are in #!, you can use gparted (in the "System" menu point) and take a screenshot of the disk layout. You can upload the file here, when you click on "Full Editor" under the answer field, then "Choose File", then "Add the File" after selecting it.
..gnutella..

User avatar
ivanovnegro
Minister of Truth
Posts: 5449
Joined: Wed Oct 17, 2012 11:12 pm

Re: i3 and CLI Questions

Unread post by ivanovnegro » Mon Feb 24, 2014 2:38 am

As a side note, you can try LinuxBBQ Gangbang and test drive a ton of WMs without installing anything from CD or USB.

User avatar
elixir
Weight Watcher
Posts: 357
Joined: Fri Feb 21, 2014 8:25 am

Re: i3 and CLI Questions

Unread post by elixir » Mon Feb 24, 2014 5:07 am

I am not at home right now but I will be later tonight. But if geometries are how mine are patitioned I have it 40gb for / (ext4), 10gb for swap, and 850gb for /home (ext4)
Out of the corner of your eye you spot him... Shia LaBeouf.

https://www.youtube.com/watch?v=o0u4M6vppCI

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: i3 and CLI Questions

Unread post by machinebacon » Mon Feb 24, 2014 5:35 am

good lord, there's a bunch of space :D

Okay, waiting your message, no hurry :)
..gnutella..

User avatar
elixir
Weight Watcher
Posts: 357
Joined: Fri Feb 21, 2014 8:25 am

Re: i3 and CLI Questions

Unread post by elixir » Mon Feb 24, 2014 8:18 am

Ok Bacon, as of right now I have Sidbang installed on my pc but with no GUI yet. but here are the partition results:

sudo parted -l

Code: Select all

 
Model: ATA ST1000DM003-9YN1 (scsi)
Disk /dev/sda: 1000GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos

    Start   End     Size      Type    File system      Flags
1  1049kb  43.0GB  42.9GB    primary     ext4
2  43.0GB  53.7GB  10.7GB    primary   linux-swap(v1)
3  53.7GB  1000GB  947GB     primary     ext4
sudo blkid -o list

Code: Select all

device                               fs_type        label         mount point                 UUID
----------------------------------------------------------------------------------------------------------------
/dev/sda2                                          swap                          <swap>                     cff
ca6d5-48a1-403a-a555-6b2a6a943cf8
/dev/sda1                                          ext4                          /                          214
bf8c1-64db-418b-a463-668ccce64ead
/dev/sda3                                          ext4                          /home                      1b2
76396-5e24-449e-be45-da3d43ed254c
Last edited by elixir on Mon Feb 24, 2014 8:31 am, edited 1 time in total.
Out of the corner of your eye you spot him... Shia LaBeouf.

https://www.youtube.com/watch?v=o0u4M6vppCI

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: i3 and CLI Questions

Unread post by machinebacon » Mon Feb 24, 2014 8:27 am

Ah you already have a BBQ installation, nice. Well this makes stuff much easier!


You want i3? Do the following:

open a terminal and enter:

Code: Select all

sudo apt-get install i3 i3-wm i3lock i3-status
as next, open an editor and edit the file ~/.xinitrc (it is in your home directory)

for example:

Code: Select all

nano ~/.xinitrc
In the last line, replace the term "openbox-session" with "i3"

Code: Select all

exec ck-launch-session dbus-launch --exit-with-session i3
Save and exit.

Log out from the graphical environment (if you are in there), or type "exit".

The login dialog will come again. Choose :Start Sidbang: there.

Welcome to i3.
..gnutella..

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: i3 and CLI Questions

Unread post by machinebacon » Mon Feb 24, 2014 8:32 am

(Addendum to above: you have a pretty large hard drive with 1TB, and gave the /home directory more than enough space. You might consider resizing it, so it will be easier in the future if you want to distro-hop, or have music/porn/videos/documents/... in separate partitions. Also, the swap space is huge - no matter what PC you have, but anything >2GB is already too much, IMO. Lastly, we should tune the reserved blocks for root - right now, mathematically, you have around 100GB (10% of your drive capacity) reserved for this -- it is a kind of fallback area for 'root' and missing for normal use. In comparison, mine is around 80MB large :) But these are little fine-tuning things we can do later.)
..gnutella..

User avatar
elixir
Weight Watcher
Posts: 357
Joined: Fri Feb 21, 2014 8:25 am

Re: i3 and CLI Questions

Unread post by elixir » Mon Feb 24, 2014 8:40 am

Sweet I got it! Thank you again for all the help. I am sorry that I have so many noob questions and that I am probably being a pain. I really do appreciate the help.
Out of the corner of your eye you spot him... Shia LaBeouf.

https://www.youtube.com/watch?v=o0u4M6vppCI

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: i3 and CLI Questions

Unread post by machinebacon » Mon Feb 24, 2014 8:42 am

No problem, really! :)

As next we make you a little login menu where you can switch between Window Managers. Have to do a little trick for it.

Have fun in i3 - remember Modkey-d (or was it p?) opens a menu, Modkey-Enter opens a terminal (latter you will need often) ;)
..gnutella..

Post Reply