Add a desktop

How could I add a new desktop with Yosemite?

dratatat, Welcome to the discussion area!
If
I take the ethernet cable and hook directly into DSL
modem.. it can access the internet.
??? The original AirPort base station (ABS) is
graphite and only has a single Ethernet port.
Therefore there is no way to connect your G3 via
Ethernet and the DSL modem to the graphite ABS.
OH - I thought that you plugged the DSL into the port with the circle of dots and the cable to the computer into the one with the 2-ended arrow??
I
want to add an even older G3 desktop to the mix but
cannot get the base station to see it.
Generally the base station doesn't see a computer
connected to it. Please describe what you are trying
to do?
I want my laptop to connect wirelessly while also having the G3 connected to the internet for someone else to be using.
Thanks!

Similar Messages

  • How do I add a desktop link to gmail?  I have one email account as my safari home page because it has trouble with apple mail, but I want a one-click link to two other email accounts.

    How do I add a desktop link to additional email accounts?  I have one email account as my safari home page because it has trouble with apple mail, but I want a one-click link on my desktop that takes me to two other email accounts.

    Can you set up a rule in your old account to forward mail to your new account and then delete it from the old account?
    (1012)

  • Is there an easy way to add a desktop shortcut for all users?

    Looking for an easy way to add a shortcut to an app for all users.

    William is correct. There are global system settings, and then there are personal user settings. Adding a shortcut to the desktop, or more commonly the Dock is a personal setting.
    Unless its in some kind of mass deployment scenario where you can create a pre programed image for large amounts of computers which has it already has your app shortcut setup, its easier to just do it one user at a time.

  • Widgets in R15 - Canot add to desktop

    I am able to add widgets to my iGoogle but an having problems adding the widgets to my desktop.
    Anyone have any suggestions?

    David,
    Glad to see I'm not the only person having the problem.
    Bob can you send it to me as well and will the Help file be updated with these instructions because if you follow those it doesn't work.
    thanks
    Alex

  • AUR - add application.desktop

    Hello Folks,
    There's an program (OpenSCAD) in the AUR which does not provide any .desktop file to add the program to the start menu or however you call that thing.
    Now I tried to do that myself so I can submit a patch. Therefore, I took a look to another program (slic3r) from the AUR which does have a working .desktop file.
    First, the "working" program, slic3r:
    PKGBUILD:
    pkgname=slic3r-git
    pkgver=20120901
    pkgrel=1
    pkgdesc="Slic3r is an STL-to-GCODE translator for RepRap 3D printers, aiming to be a modern and fast alternative to Skeinforge."
    arch=('any')
    url="http://slic3r.org/"
    license=('GPL')
    depends=('perl' 'perl-moo' 'perl-moo' 'perl-boost-geometry-utils' 'perl-math-clipper' 'perl-math-convexhull' 'perl-math-geometry-voronoi' 'perl-math-planepath')
    makedepends=('git')
    optdepends=('perl-wx: GUI support'
    'perl-growl-gntp: notifications support via growl'
    'perl-net-dbus: notifications support via any dbus-based notifier'
    'perl-xml-sax: Additive Manufacturing File Format (AMF) support')
    provides=('slic3r')
    conflicts=('slic3r')
    source=('slic3r.desktop')
    md5sums=('c997a07f658061d29b221cf7fd07ff97')
    _gitroot="git://github.com/alexrj/Slic3r"
    _gitname="Slic3r"
    build() {
    cd "$srcdir"
    msg "Connecting to GIT server...."
    if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot $_gitname
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    rm -rf "$srcdir/$_gitname-build"
    git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
    cd "$srcdir/$_gitname-build"
    # ENV for perl
    export PERL_MM_USE_DEFAULT=0 PERL_AUTOINSTALL="--skipdeps" \
    PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
    PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
    MODULEBUILDRC=/dev/null SLIC3R_NO_AUTO=1
    # Nasty fix for useless Growl dependency ... please post in comment real fix, if u know one ;)
    # sed -i "s/ 'Growl/\#&/" Build.PL
    msg " ⚠ DO NOT respond to any question with 'yes'. Report a bug in comment instead.\n"
    # Cuz cpan will install fixes to $HOME ... which is not the point of this package
    # Build stage
    { /usr/bin/perl Build.PL &&
    ./Build &&
    ./Build test &&
    ./Build install; } || return 1
    # Icons " current Build.PL is not really geared for installation "
    install -d $pkgdir/usr/bin/vendor_perl/var
    install -m 644 $srcdir/$_gitname-build/var/* $pkgdir/usr/bin/vendor_perl/var/
    install -d $pkgdir/usr/share/applications
    install -m 644 $srcdir/slic3r.desktop $pkgdir/usr/share/applications/
    .desktop:
    [Desktop Entry]
    Name=Slic3r
    Comment=STL-to-GCODE translator for RepRap printers
    Exec=slic3r.pl --gui
    Icon=/usr/bin/vendor_perl/var/Slic3r_128px.png
    Terminal=0
    Type=Application
    Encoding=UTF-8
    Categories=Development;Application;
    Now here's what I tried with OpenSCAD:
    PKGBUILD
    # Maintainer: Pierre DOUCET <pierre at equinoxefr.org>
    pkgname=openscad
    pkgver=2011.12
    pkgrel=1
    pkgdesc="OpenSCAD is a software for creating solid 3D CAD objects."
    arch=('i686' 'x86_64')
    license=('GPLv2')
    url="http://openscad.org/"
    source=("https://github.com/downloads/openscad/openscad/${pkgname}-${pkgver}.src.tar.gz" "openscad.desktop")
    md5sums=('4acd522ccdf368c081e916bd280df260' 'b1e704b3d37f83c293598fcfd5dcd8cc')
    depends=('qt' 'cgal' 'eigen' 'opencsg' 'bison' 'flex' 'gcc')
    build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    qmake || return 1
    make || return 1
    install -D openscad $pkgdir/usr/bin/openscad
    install -m 644 $srcdir/openscad.desktop $pkgdir/usr/share/applications/
    .desktop
    [Desktop Entry]
    Name=OpenSCAD
    Comment=software for creating solid 3D CAD objects
    Exec=openscad
    #Icon=/usr/bin/vendor_perl/var/Slic3r_128px.png
    Terminal=0
    Type=Application
    Encoding=UTF-8
    Categories=Graphics;Application;
    Here's the output from makepkg -si
    ==> Making package: openscad 2011.12-1 (Wed Sep 19 10:39:54 CEST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found openscad-2011.12.src.tar.gz
    -> Found openscad.desktop
    ==> Validating source files with md5sums...
    openscad-2011.12.src.tar.gz ... Passed
    openscad.desktop ... Passed
    ==> Extracting Sources...
    -> Extracting openscad-2011.12.src.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    make: Nothing to be done for `first'.
    install: target ‘/home/tectu/build/openscad/pkg/usr/share/applications/’ is not a directory: No such file or directory
    ==> ERROR: A failure occurred in build().
    Aborting...
    Can anybody tell me what I am doing wrong?
    ~ Tectu

    Your install command is failing - the error message tells you exactly what's wrong, and the solution is in the slic3r PKGBUILD that you used for inspiration.
    I would, however, suggest a thorough examination of the install man page, as there is a better way to do it.

  • Add to Desktop Pictures

    Hi
    New convert to iMac from Windows.
    Love the facility to change desktop pictures, especially the Nature folder.
    How do I add some of our own photos (from our African safari holiday) to the Nature folder in Desktop settings so they are included in the random change of desktop pictures?
    Many thanks
    Les

    Just drag and drop them into the folder.
    You may want to use copies rather than the originals, and you can crop and size them for the screen resolution in iPhoto to ensure no white bars or stretched pics.
    If you don't want duplicates on the computer, you can use aliases in the Nature folder (or wherever else you choose - I use a seperate folder with a mixture of pics from the supplied folders, plus some of my own and some stellar views from APOD).

  • How to add multiple desktop on mac os x?

    On my previous version of Mac OS X I was able to add as much desktops I want by just going into upper right corner with my pointer and clickin on the sign +. Now, after replacing my SSD and installing new OS I don't have that option. Does anyone knows how to add desktops on Mac OS 10.7.5? Thank you

    Mission Control – Work in Multiple Spaces  
    If you want to keep the desktops in a specific order, go to System Preferences/Mission Control and uncheck the box " Automatically rearrange spaces based on most recent use." You can also select the box below that so if you open an application, you'll be taken to that space.
    If you want to cut down the number of desktops, there is also an option to remove the Dashboard as a desktop and have it work like it did in Snow Leopard. That can be set in System Preferences/Mission Control by deselecting Show Dashboard as a  space. You can access the Dashboard by clicking on the Dashboard icon in the dock or using the FN 12 key.

  • Import, add from desktop?

    I tried to do this and could not find the desktop. I see Macontosh HD listed, but cannot find desktop.
    Also, still not really clear on difference between add or copy. No reason to really do move correct?

    You'll need to expand out the Macintosh HD until you see the Users folder. Desktop will be one of the subfolders within it.
    Add leaves the file in its current location when adding to catalog. Copy leaves original in current locations and ad a copy of the file to a new location at the same time as adding it to the catalog.

  • Add second desktop to network

    Newbie, so please forgive my ignorance.  I'm using a Linksys wrt54G router and have set up my primary desktop with the router, and have successfully added to laptops to the network.  I have another desktop that I would like to add.  How do I do this?  Obviously it doens't have the ability to look for a wireless connection.  I'm sure this is stupid, but any help would be appreciated.

    mrichey wrote:
    Newbie, so please forgive my ignorance. I'm using a Linksys wrt54G router and have set up my primary desktop with the router, and have successfully added to laptops to the network. I have another desktop that I would like to add. How do I do this? Obviously it doens't have the ability to look for a wireless connection. I'm sure this is stupid, but any help would be appreciated.
    You can do it one of 2 ways:
    run an ethernet line from your desktop to one of the ports in the router
    or
    buy a wireless adaptor card for your desktop and go wireless

  • Add virtual desktop

    Hi,
    I have a problem, when I try to add a virtual desktop, the button that usually appears on the top right corner disappeared, I am just
    wondering how I can resore it. Thanks

    Here are a few things to consider.
    How many desktops do you have?  There is a maximum which I can't recall, but maybe you've reached it?
    If your dock is on the right, the little new desktop button will appear in the upper LEFT corner.
    Sometimes third party software interferes with Mission Control.  Does this behavior persist for a different user, e.g. Guest User?  Does this behavior persist when starting up in Safe Mode?
    charlie

  • HT3737 How do i add multiple desktops on my laptop?

    I can't figure out how to open more than one desktop of my macbook air.

    Mission Control – Work in Multiple Spaces  
    If you want to keep the desktops in a specific order, go to System Preferences/Mission Control and uncheck the box " Automatically rearrange spaces based on most recent use." You can also select the box below that so if you open an application, you'll be taken to that space.
    If you want to cut down the number of desktops, there is also an option to remove the Dashboard as a desktop and have it work like it did in Snow Leopard. That can be set in System Preferences/Mission Control by deselecting Show Dashboard as a  space. You can access the Dashboard by clicking on the Dashboard icon in the dock or using the FN 12 key.

  • I want to add a desktop app to Mozilla Firefox, so I can unpin firefox from the takbar. How do I do that?

    I use a Windows 8.1 operating system. Not the RT version or a new version; just the standard version of Windows 8.1. I have an app for Mozilla Firefox on my start screen, and one pinned to my task bar. I deleted the shortcut to Firefox from the desktop, and deleted it from the hard drive, but now I wish I hadn't I can't find an operating system option to create another shortcut, and I can't find the same or similar option on Firefox. Please help. Thanks.

    Hi, I have Win 7, so can only generalize, but I would enter '''Firefox''' into the PCs search box, then right click > Send To Desktop.
    Hope that may help.

  • How to add number of desktop

    I have two user in my MBA. One use account with 4 desktops. But another user account only with 1 desktop. May I know how can I add more desktop?

    Enter Mission Control, move the cursor to the top, right side of the screen.  A tab will slide out of the right side with a + sign on it.  Click that to add another desktop.
    Regards,
    Captfred

  • Can you add the entire content of your desktop to the allowable locations in flash player?

    can you add the entire content of desktop to the allowable locations in flash player?  when i click 'add' to allowable locations and type in file:///C:/Documents and Settings under website (i know it's not the website but where else would it be added) it doesn't show up in the overall list of allowable 'sites'.

    Hi radwh,
    Are you talking about trying to add your desktop to Flash Player's trusted locations? If so, you use the "Advanced" tab on the Local Settings Manager to designate folders and files as trusted. (Full path is Advanced->Developer Tools->Trusted Location Settings.) Here's a link to the documentation for that: http://help.adobe.com/en_US/FlashPlayer/LSM/WS6aa5ec234ff3f285139dc56112e3786b68c-7ff0.htm l .
    Hope this helps, and get back to me with further details if this is not what you were asking.
    Thanks,
    KALTechWriter

  • Right click to add new folder to desktop, not there

    I want to add new folders to desktop
    (I use to be able to right click & new folder was an option to add to desktop)

    hello sammyg11, you're posting in a support forum for the firefox browser by mozilla. the question you've asked isn't really related to firefox but is a question about windows - in this case please refer to external help ressources: www.sevenforums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html

Maybe you are looking for

  • Error: Logical end-of-file reached during read operation. Result Code = -39

    Hello all, Recently, I have been suddenly getting this error message: "Logical end-of-file reached during read operation. Result Code = -39." In my case, when it does come up, it always pops up during the recording of an audio take. Almost immediatel

  • Dynamic forms in jsf

    Hi all, This question has probably been asked a thousand times, but I can't find the answer. I am an experienced Struts developer, but now I want to create an application using jsf. It will be some kind of quiz with multiple choice questions. The pro

  • Creating subcontroller in application class function

    i am using a certain subcontroller quite frequenly in my BSP-app. I wrote this function to craete the subcontroller: method create_sc.   data lorv_subcontroller type ref to zcl_bla.   lorv_subcontroller ?= create_controller( controller_name = 'bla.do

  • Change width of fonts

    I just learned how to change size of fonts. But, how can I change "width" of fonts in java? Please help......;) int font_size = 150; int x = 120; int y = 125; font = new Font("TimesRoman", Font.PLAIN, font_size); g2.setFont(font); g2.drawString("hpat

  • PDF File Thumbnails?

    Hi, Can't see PDF file thumbnails in Android File Explorers, it only shows the Adobe PDF symbol for all files. How can I see the Thumbnails as seen in Windows Explorer? I'm using a Galaxy Note 10.1. Thanks for help in advance.